From d5466a91e64df82724c5a60199bca1b718c4af37 Mon Sep 17 00:00:00 2001 From: go-jet Date: Fri, 16 Aug 2019 12:43:41 +0200 Subject: [PATCH] Move init and test results data to separate repo. --- tests/init/data | 1 - tests/init/init.go | 5 +- tests/mysql/alltypes_test.go | 8 +- tests/mysql/select_test.go | 8 +- tests/mysql/testdata/all_actors.json | 1202 - .../mysql/testdata/customer_payment_sum.json | 3134 - .../lang_film_actor_inventory_rental.json | 2462 - tests/mysql/testdata/r_rating_films.json | 9469 - tests/postgres/alltypes_test.go | 8 +- tests/postgres/chinook_db_test.go | 2 +- tests/postgres/northwind_test.go | 2 +- tests/postgres/select_test.go | 10 +- .../testdata/customer_payment_sum.json | 1978 - .../postgres/testdata/joined_everything.json | 252320 --------------- tests/postgres/testdata/northwind-all.json | 135339 -------- tests/postgres/testdata/quick-start-dest.json | 6067 - .../postgres/testdata/quick-start-dest2.json | 1769 - tests/testdata/common/bool_operators.json | 38 - tests/testdata/common/common.go | 93 - tests/testdata/common/float_operators.json | 76 - tests/testdata/common/int_operators.json | 78 - 21 files changed, 21 insertions(+), 414048 deletions(-) delete mode 160000 tests/init/data delete mode 100644 tests/mysql/testdata/all_actors.json delete mode 100644 tests/mysql/testdata/customer_payment_sum.json delete mode 100644 tests/mysql/testdata/lang_film_actor_inventory_rental.json delete mode 100644 tests/mysql/testdata/r_rating_films.json delete mode 100644 tests/postgres/testdata/customer_payment_sum.json delete mode 100644 tests/postgres/testdata/joined_everything.json delete mode 100644 tests/postgres/testdata/northwind-all.json delete mode 100644 tests/postgres/testdata/quick-start-dest.json delete mode 100644 tests/postgres/testdata/quick-start-dest2.json delete mode 100644 tests/testdata/common/bool_operators.json delete mode 100644 tests/testdata/common/common.go delete mode 100644 tests/testdata/common/float_operators.json delete mode 100644 tests/testdata/common/int_operators.json diff --git a/tests/init/data b/tests/init/data deleted file mode 160000 index 463b73e..0000000 --- a/tests/init/data +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 463b73ecd040e19a4489c676e5fa5bbf7fea48df diff --git a/tests/init/init.go b/tests/init/init.go index 1adbc15..4bb03a1 100644 --- a/tests/init/init.go +++ b/tests/init/init.go @@ -50,7 +50,7 @@ func initMySQLDB() { for _, dbName := range mySQLDBs { cmdLine := fmt.Sprintf("mysql -h 127.0.0.1 -u %s -p%s %s < %s", - dbconfig.MySQLUser, dbconfig.MySQLPassword, dbName, "./init/data/mysql/"+dbName+".sql") + dbconfig.MySQLUser, dbconfig.MySQLPassword, dbName, "./testdata/init/mysql/"+dbName+".sql") fmt.Println(cmdLine) @@ -74,7 +74,6 @@ func initMySQLDB() { panicOnError(err) } - } func initPostgresDB() { @@ -96,7 +95,7 @@ func initPostgresDB() { for _, schemaName := range schemaNames { - execFile(db, "./init/data/postgres/"+schemaName+".sql") + execFile(db, "./testdata/init/postgres/"+schemaName+".sql") err = postgres.Generate("./.gentestdata", postgres.DBConnection{ Host: dbconfig.Host, diff --git a/tests/mysql/alltypes_test.go b/tests/mysql/alltypes_test.go index f8c0d07..1c93609 100644 --- a/tests/mysql/alltypes_test.go +++ b/tests/mysql/alltypes_test.go @@ -5,7 +5,7 @@ import ( "github.com/go-jet/jet/internal/testutils" "github.com/go-jet/jet/tests/.gentestdata/mysql/test_sample/model" . "github.com/go-jet/jet/tests/.gentestdata/mysql/test_sample/table" - "github.com/go-jet/jet/tests/testdata/common" + "github.com/go-jet/jet/tests/testdata/results/common" "github.com/google/uuid" "time" @@ -193,7 +193,7 @@ FROM test_sample.all_types; assert.NilError(t, err) - testutils.AssertJSONFile(t, dest, "./testdata/common/bool_operators.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/common/bool_operators.json") } func TestFloatOperators(t *testing.T) { @@ -290,7 +290,7 @@ LIMIT ?; assert.NilError(t, err) - testutils.AssertJSONFile(t, dest, "./testdata/common/float_operators.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/common/float_operators.json") } func TestIntegerOperators(t *testing.T) { @@ -429,7 +429,7 @@ LIMIT ?; //testutils.PrintJson(dest) - testutils.AssertJSONFile(t, dest, "./testdata/common/int_operators.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/common/int_operators.json") } func TestStringOperators(t *testing.T) { diff --git a/tests/mysql/select_test.go b/tests/mysql/select_test.go index 81e5ae1..b6fb968 100644 --- a/tests/mysql/select_test.go +++ b/tests/mysql/select_test.go @@ -65,7 +65,7 @@ ORDER BY actor.actor_id; //testutils.PrintJson(dest) //testutils.SaveJsonFile(dest, "mysql/testdata/all_actors.json") - testutils.AssertJSONFile(t, dest, "mysql/testdata/all_actors.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/mysql/all_actors.json") } func TestSelectGroupByHaving(t *testing.T) { @@ -138,7 +138,7 @@ ORDER BY payment.customer_id, SUM(payment.amount) ASC; assert.Equal(t, len(dest), 174) //testutils.SaveJsonFile(dest, "mysql/testdata/customer_payment_sum.json") - testutils.AssertJSONFile(t, dest, "mysql/testdata/customer_payment_sum.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/mysql/customer_payment_sum.json") } func TestSubQuery(t *testing.T) { @@ -174,7 +174,7 @@ func TestSubQuery(t *testing.T) { assert.NilError(t, err) //testutils.SaveJsonFile(dest, "mysql/testdata/r_rating_films.json") - testutils.AssertJSONFile(t, dest, "mysql/testdata/r_rating_films.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/mysql/r_rating_films.json") } func TestSelectAndUnionInProjection(t *testing.T) { @@ -405,7 +405,7 @@ LIMIT ?; //testutils.SaveJsonFile(dest, "./mysql/testdata/lang_film_actor_inventory_rental.json") - testutils.AssertJSONFile(t, dest, "./mysql/testdata/lang_film_actor_inventory_rental.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/mysql/lang_film_actor_inventory_rental.json") } } diff --git a/tests/mysql/testdata/all_actors.json b/tests/mysql/testdata/all_actors.json deleted file mode 100644 index 55a60f8..0000000 --- a/tests/mysql/testdata/all_actors.json +++ /dev/null @@ -1,1202 +0,0 @@ -[ - { - "ActorID": 1, - "FirstName": "PENELOPE", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 2, - "FirstName": "NICK", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 3, - "FirstName": "ED", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 4, - "FirstName": "JENNIFER", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 5, - "FirstName": "JOHNNY", - "LastName": "LOLLOBRIGIDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 6, - "FirstName": "BETTE", - "LastName": "NICHOLSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 7, - "FirstName": "GRACE", - "LastName": "MOSTEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 8, - "FirstName": "MATTHEW", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 9, - "FirstName": "JOE", - "LastName": "SWANK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 10, - "FirstName": "CHRISTIAN", - "LastName": "GABLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 11, - "FirstName": "ZERO", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 14, - "FirstName": "VIVIEN", - "LastName": "BERGEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 15, - "FirstName": "CUBA", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 17, - "FirstName": "HELEN", - "LastName": "VOIGHT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 18, - "FirstName": "DAN", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 19, - "FirstName": "BOB", - "LastName": "FAWCETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 21, - "FirstName": "KIRSTEN", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 22, - "FirstName": "ELVIS", - "LastName": "MARX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 24, - "FirstName": "CAMERON", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 25, - "FirstName": "KEVIN", - "LastName": "BLOOM", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 27, - "FirstName": "JULIA", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 28, - "FirstName": "WOODY", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 29, - "FirstName": "ALEC", - "LastName": "WAYNE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 30, - "FirstName": "SANDRA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 31, - "FirstName": "SISSY", - "LastName": "SOBIESKI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 32, - "FirstName": "TIM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 33, - "FirstName": "MILLA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 34, - "FirstName": "AUDREY", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 35, - "FirstName": "JUDY", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 37, - "FirstName": "VAL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 38, - "FirstName": "TOM", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 39, - "FirstName": "GOLDIE", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 40, - "FirstName": "JOHNNY", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 42, - "FirstName": "TOM", - "LastName": "MIRANDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 43, - "FirstName": "KIRK", - "LastName": "JOVOVICH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 44, - "FirstName": "NICK", - "LastName": "STALLONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 46, - "FirstName": "PARKER", - "LastName": "GOLDBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 47, - "FirstName": "JULIA", - "LastName": "BARRYMORE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 48, - "FirstName": "FRANCES", - "LastName": "DAY-LEWIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 49, - "FirstName": "ANNE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 50, - "FirstName": "NATALIE", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 52, - "FirstName": "CARMEN", - "LastName": "HUNT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 54, - "FirstName": "PENELOPE", - "LastName": "PINKETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 55, - "FirstName": "FAY", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 56, - "FirstName": "DAN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 57, - "FirstName": "JUDE", - "LastName": "CRUISE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 58, - "FirstName": "CHRISTIAN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 59, - "FirstName": "DUSTIN", - "LastName": "TAUTOU", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 60, - "FirstName": "HENRY", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 61, - "FirstName": "CHRISTIAN", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 63, - "FirstName": "CAMERON", - "LastName": "WRAY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 64, - "FirstName": "RAY", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 65, - "FirstName": "ANGELA", - "LastName": "HUDSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 66, - "FirstName": "MARY", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 67, - "FirstName": "JESSICA", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 68, - "FirstName": "RIP", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 69, - "FirstName": "KENNETH", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 70, - "FirstName": "MICHELLE", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 71, - "FirstName": "ADAM", - "LastName": "GRANT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 72, - "FirstName": "SEAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 73, - "FirstName": "GARY", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 74, - "FirstName": "MILLA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 75, - "FirstName": "BURT", - "LastName": "POSEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 76, - "FirstName": "ANGELINA", - "LastName": "ASTAIRE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 77, - "FirstName": "CARY", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 78, - "FirstName": "GROUCHO", - "LastName": "SINATRA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 80, - "FirstName": "RALPH", - "LastName": "CRUZ", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 81, - "FirstName": "SCARLETT", - "LastName": "DAMON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 83, - "FirstName": "BEN", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 84, - "FirstName": "JAMES", - "LastName": "PITT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 85, - "FirstName": "MINNIE", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 86, - "FirstName": "GREG", - "LastName": "CHAPLIN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 87, - "FirstName": "SPENCER", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 88, - "FirstName": "KENNETH", - "LastName": "PESCI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 89, - "FirstName": "CHARLIZE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 91, - "FirstName": "CHRISTOPHER", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 93, - "FirstName": "ELLEN", - "LastName": "PRESLEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 94, - "FirstName": "KENNETH", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 96, - "FirstName": "GENE", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 98, - "FirstName": "CHRIS", - "LastName": "BRIDGES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 99, - "FirstName": "JIM", - "LastName": "MOSTEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 101, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 102, - "FirstName": "WALTER", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 106, - "FirstName": "GROUCHO", - "LastName": "DUNST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 107, - "FirstName": "GINA", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 108, - "FirstName": "WARREN", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 109, - "FirstName": "SYLVESTER", - "LastName": "DERN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 110, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 111, - "FirstName": "CAMERON", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 112, - "FirstName": "RUSSELL", - "LastName": "BACALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 113, - "FirstName": "MORGAN", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 115, - "FirstName": "HARRISON", - "LastName": "BALE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 116, - "FirstName": "DAN", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 118, - "FirstName": "CUBA", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 120, - "FirstName": "PENELOPE", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 121, - "FirstName": "LIZA", - "LastName": "BERGMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 122, - "FirstName": "SALMA", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 124, - "FirstName": "SCARLETT", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 125, - "FirstName": "ALBERT", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 126, - "FirstName": "FRANCES", - "LastName": "TOMEI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 127, - "FirstName": "KEVIN", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 128, - "FirstName": "CATE", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 129, - "FirstName": "DARYL", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 130, - "FirstName": "GRETA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 131, - "FirstName": "JANE", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 132, - "FirstName": "ADAM", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 133, - "FirstName": "RICHARD", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 134, - "FirstName": "GENE", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 135, - "FirstName": "RITA", - "LastName": "REYNOLDS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 137, - "FirstName": "MORGAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 138, - "FirstName": "LUCILLE", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 139, - "FirstName": "EWAN", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 141, - "FirstName": "CATE", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 142, - "FirstName": "JADA", - "LastName": "RYDER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 143, - "FirstName": "RIVER", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 144, - "FirstName": "ANGELA", - "LastName": "WITHERSPOON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 145, - "FirstName": "KIM", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 147, - "FirstName": "FAY", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 148, - "FirstName": "EMILY", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 149, - "FirstName": "RUSSELL", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 150, - "FirstName": "JAYNE", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 152, - "FirstName": "BEN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 153, - "FirstName": "MINNIE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 154, - "FirstName": "MERYL", - "LastName": "GIBSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 155, - "FirstName": "IAN", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 156, - "FirstName": "FAY", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 158, - "FirstName": "VIVIEN", - "LastName": "BASINGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 159, - "FirstName": "LAURA", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 160, - "FirstName": "CHRIS", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 161, - "FirstName": "HARVEY", - "LastName": "HOPE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 162, - "FirstName": "OPRAH", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 163, - "FirstName": "CHRISTOPHER", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 164, - "FirstName": "HUMPHREY", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 165, - "FirstName": "AL", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 166, - "FirstName": "NICK", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 167, - "FirstName": "LAURENCE", - "LastName": "BULLOCK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 168, - "FirstName": "WILL", - "LastName": "WILSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 169, - "FirstName": "KENNETH", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 170, - "FirstName": "MENA", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 172, - "FirstName": "GROUCHO", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 173, - "FirstName": "ALAN", - "LastName": "DREYFUSS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 174, - "FirstName": "MICHAEL", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 175, - "FirstName": "WILLIAM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 176, - "FirstName": "JON", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 177, - "FirstName": "GENE", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 178, - "FirstName": "LISA", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 179, - "FirstName": "ED", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 180, - "FirstName": "JEFF", - "LastName": "SILVERSTONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 181, - "FirstName": "MATTHEW", - "LastName": "CARREY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 182, - "FirstName": "DEBBIE", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 183, - "FirstName": "RUSSELL", - "LastName": "CLOSE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 184, - "FirstName": "HUMPHREY", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 185, - "FirstName": "MICHAEL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 186, - "FirstName": "JULIA", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 188, - "FirstName": "ROCK", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 189, - "FirstName": "CUBA", - "LastName": "BIRCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 190, - "FirstName": "AUDREY", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 191, - "FirstName": "GREGORY", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 193, - "FirstName": "BURT", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 195, - "FirstName": "JAYNE", - "LastName": "SILVERSTONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 196, - "FirstName": "BELA", - "LastName": "WALKEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 199, - "FirstName": "JULIA", - "LastName": "FAWCETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 200, - "FirstName": "THORA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } -] \ No newline at end of file diff --git a/tests/mysql/testdata/customer_payment_sum.json b/tests/mysql/testdata/customer_payment_sum.json deleted file mode 100644 index fffb1ff..0000000 --- a/tests/mysql/testdata/customer_payment_sum.json +++ /dev/null @@ -1,3134 +0,0 @@ -[ - { - "CustomerID": 2, - "StoreID": 1, - "FirstName": "PATRICIA", - "LastName": "JOHNSON", - "Email": "PATRICIA.JOHNSON@dvdscustomer.org", - "AddressID": 6, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 128.73, - "Avg": 4.767778, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 3, - "StoreID": 1, - "FirstName": "LINDA", - "LastName": "WILLIAMS", - "Email": "LINDA.WILLIAMS@dvdscustomer.org", - "AddressID": 7, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.74, - "Avg": 5.220769, - "Max": 10.99, - "Min": 0.99, - "Count": 26 - } - }, - { - "CustomerID": 5, - "StoreID": 1, - "FirstName": "ELIZABETH", - "LastName": "BROWN", - "Email": "ELIZABETH.BROWN@dvdscustomer.org", - "AddressID": 9, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 144.62, - "Avg": 3.805789, - "Max": 9.99, - "Min": 0.99, - "Count": 38 - } - }, - { - "CustomerID": 7, - "StoreID": 1, - "FirstName": "MARIA", - "LastName": "MILLER", - "Email": "MARIA.MILLER@dvdscustomer.org", - "AddressID": 11, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 151.67, - "Avg": 4.596061, - "Max": 8.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 13, - "StoreID": 2, - "FirstName": "KAREN", - "LastName": "JACKSON", - "Email": "KAREN.JACKSON@dvdscustomer.org", - "AddressID": 17, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 131.73, - "Avg": 4.878889, - "Max": 11.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 15, - "StoreID": 1, - "FirstName": "HELEN", - "LastName": "HARRIS", - "Email": "HELEN.HARRIS@dvdscustomer.org", - "AddressID": 19, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 134.68, - "Avg": 4.20875, - "Max": 8.99, - "Min": 0, - "Count": 32 - } - }, - { - "CustomerID": 19, - "StoreID": 1, - "FirstName": "RUTH", - "LastName": "MARTINEZ", - "Email": "RUTH.MARTINEZ@dvdscustomer.org", - "AddressID": 23, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 125.76, - "Avg": 5.24, - "Max": 9.99, - "Min": 0.99, - "Count": 24 - } - }, - { - "CustomerID": 21, - "StoreID": 1, - "FirstName": "MICHELLE", - "LastName": "CLARK", - "Email": "MICHELLE.CLARK@dvdscustomer.org", - "AddressID": 25, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 155.65, - "Avg": 4.447143, - "Max": 10.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 26, - "StoreID": 2, - "FirstName": "JESSICA", - "LastName": "HALL", - "Email": "JESSICA.HALL@dvdscustomer.org", - "AddressID": 30, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 152.66, - "Avg": 4.49, - "Max": 9.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 27, - "StoreID": 2, - "FirstName": "SHIRLEY", - "LastName": "ALLEN", - "Email": "SHIRLEY.ALLEN@dvdscustomer.org", - "AddressID": 31, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.69, - "Avg": 4.086774, - "Max": 8.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 29, - "StoreID": 2, - "FirstName": "ANGELA", - "LastName": "HERNANDEZ", - "Email": "ANGELA.HERNANDEZ@dvdscustomer.org", - "AddressID": 33, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 140.64, - "Avg": 3.906667, - "Max": 10.99, - "Min": 0.99, - "Count": 36 - } - }, - { - "CustomerID": 32, - "StoreID": 1, - "FirstName": "AMY", - "LastName": "LOPEZ", - "Email": "AMY.LOPEZ@dvdscustomer.org", - "AddressID": 36, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.71, - "Avg": 4.403793, - "Max": 9.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 35, - "StoreID": 2, - "FirstName": "VIRGINIA", - "LastName": "GREEN", - "Email": "VIRGINIA.GREEN@dvdscustomer.org", - "AddressID": 39, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.68, - "Avg": 4.0525, - "Max": 7.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 38, - "StoreID": 1, - "FirstName": "MARTHA", - "LastName": "GONZALEZ", - "Email": "MARTHA.GONZALEZ@dvdscustomer.org", - "AddressID": 42, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.66, - "Avg": 3.754706, - "Max": 6.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 39, - "StoreID": 1, - "FirstName": "DEBRA", - "LastName": "NELSON", - "Email": "DEBRA.NELSON@dvdscustomer.org", - "AddressID": 43, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 141.71, - "Avg": 4.886552, - "Max": 9.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 45, - "StoreID": 1, - "FirstName": "JANET", - "LastName": "PHILLIPS", - "Email": "JANET.PHILLIPS@dvdscustomer.org", - "AddressID": 49, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.73, - "Avg": 4.730741, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 46, - "StoreID": 2, - "FirstName": "CATHERINE", - "LastName": "CAMPBELL", - "Email": "CATHERINE.CAMPBELL@dvdscustomer.org", - "AddressID": 50, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 142.66, - "Avg": 4.195882, - "Max": 8.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 49, - "StoreID": 2, - "FirstName": "JOYCE", - "LastName": "EDWARDS", - "Email": "JOYCE.EDWARDS@dvdscustomer.org", - "AddressID": 53, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 130.72, - "Avg": 4.668571, - "Max": 10.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 50, - "StoreID": 1, - "FirstName": "DIANE", - "LastName": "COLLINS", - "Email": "DIANE.COLLINS@dvdscustomer.org", - "AddressID": 54, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 169.65, - "Avg": 4.847143, - "Max": 10.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 51, - "StoreID": 1, - "FirstName": "ALICE", - "LastName": "STEWART", - "Email": "ALICE.STEWART@dvdscustomer.org", - "AddressID": 55, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 138.67, - "Avg": 4.202121, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 54, - "StoreID": 1, - "FirstName": "TERESA", - "LastName": "ROGERS", - "Email": "TERESA.ROGERS@dvdscustomer.org", - "AddressID": 58, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 128.71, - "Avg": 4.438276, - "Max": 10.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 56, - "StoreID": 1, - "FirstName": "GLORIA", - "LastName": "COOK", - "Email": "GLORIA.COOK@dvdscustomer.org", - "AddressID": 60, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.7, - "Avg": 4.523333, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 59, - "StoreID": 1, - "FirstName": "CHERYL", - "LastName": "MURPHY", - "Email": "CHERYL.MURPHY@dvdscustomer.org", - "AddressID": 63, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 133.73, - "Avg": 4.952963, - "Max": 8.99, - "Min": 2.99, - "Count": 27 - } - }, - { - "CustomerID": 66, - "StoreID": 2, - "FirstName": "JANICE", - "LastName": "WARD", - "Email": "JANICE.WARD@dvdscustomer.org", - "AddressID": 70, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 144.66, - "Avg": 4.254706, - "Max": 8.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 71, - "StoreID": 1, - "FirstName": "KATHY", - "LastName": "JAMES", - "Email": "KATHY.JAMES@dvdscustomer.org", - "AddressID": 75, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.7, - "Avg": 4.323333, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 75, - "StoreID": 2, - "FirstName": "TAMMY", - "LastName": "SANDERS", - "Email": "TAMMY.SANDERS@dvdscustomer.org", - "AddressID": 79, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 155.59, - "Avg": 3.794878, - "Max": 9.99, - "Min": 0, - "Count": 41 - } - }, - { - "CustomerID": 78, - "StoreID": 1, - "FirstName": "LORI", - "LastName": "WOOD", - "Email": "LORI.WOOD@dvdscustomer.org", - "AddressID": 82, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 141.69, - "Avg": 4.570645, - "Max": 10.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 80, - "StoreID": 1, - "FirstName": "MARILYN", - "LastName": "ROSS", - "Email": "MARILYN.ROSS@dvdscustomer.org", - "AddressID": 84, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 137.7, - "Avg": 4.59, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 82, - "StoreID": 1, - "FirstName": "KATHRYN", - "LastName": "COLEMAN", - "Email": "KATHRYN.COLEMAN@dvdscustomer.org", - "AddressID": 86, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 130.74, - "Avg": 5.028462, - "Max": 9.99, - "Min": 0.99, - "Count": 26 - } - }, - { - "CustomerID": 84, - "StoreID": 2, - "FirstName": "SARA", - "LastName": "PERRY", - "Email": "SARA.PERRY@dvdscustomer.org", - "AddressID": 88, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 141.67, - "Avg": 4.29303, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 86, - "StoreID": 2, - "FirstName": "JACQUELINE", - "LastName": "LONG", - "Email": "JACQUELINE.LONG@dvdscustomer.org", - "AddressID": 90, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 148.67, - "Avg": 4.505152, - "Max": 10.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 87, - "StoreID": 1, - "FirstName": "WANDA", - "LastName": "PATTERSON", - "Email": "WANDA.PATTERSON@dvdscustomer.org", - "AddressID": 91, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 145.7, - "Avg": 4.856667, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 89, - "StoreID": 1, - "FirstName": "JULIA", - "LastName": "FLORES", - "Email": "JULIA.FLORES@dvdscustomer.org", - "AddressID": 93, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 134.68, - "Avg": 4.20875, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 92, - "StoreID": 2, - "FirstName": "TINA", - "LastName": "SIMMONS", - "Email": "TINA.SIMMONS@dvdscustomer.org", - "AddressID": 96, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 133.72, - "Avg": 4.775714, - "Max": 8.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 102, - "StoreID": 1, - "FirstName": "CRYSTAL", - "LastName": "FORD", - "Email": "CRYSTAL.FORD@dvdscustomer.org", - "AddressID": 106, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 137.67, - "Avg": 4.171818, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 103, - "StoreID": 1, - "FirstName": "GLADYS", - "LastName": "HAMILTON", - "Email": "GLADYS.HAMILTON@dvdscustomer.org", - "AddressID": 107, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 146.69, - "Avg": 4.731935, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 107, - "StoreID": 1, - "FirstName": "FLORENCE", - "LastName": "WOODS", - "Email": "FLORENCE.WOODS@dvdscustomer.org", - "AddressID": 111, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.7, - "Avg": 4.223333, - "Max": 7.99, - "Min": 0, - "Count": 30 - } - }, - { - "CustomerID": 108, - "StoreID": 1, - "FirstName": "TRACY", - "LastName": "COLE", - "Email": "TRACY.COLE@dvdscustomer.org", - "AddressID": 112, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 132.7, - "Avg": 4.423333, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 112, - "StoreID": 2, - "FirstName": "ROSA", - "LastName": "REYNOLDS", - "Email": "ROSA.REYNOLDS@dvdscustomer.org", - "AddressID": 116, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 133.7, - "Avg": 4.456667, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 114, - "StoreID": 2, - "FirstName": "GRACE", - "LastName": "ELLIS", - "Email": "GRACE.ELLIS@dvdscustomer.org", - "AddressID": 118, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 139.67, - "Avg": 4.232424, - "Max": 10.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 119, - "StoreID": 1, - "FirstName": "SHERRY", - "LastName": "MARSHALL", - "Email": "SHERRY.MARSHALL@dvdscustomer.org", - "AddressID": 123, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 153.66, - "Avg": 4.519412, - "Max": 8.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 120, - "StoreID": 2, - "FirstName": "SYLVIA", - "LastName": "ORTIZ", - "Email": "SYLVIA.ORTIZ@dvdscustomer.org", - "AddressID": 124, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 143.68, - "Avg": 4.49, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 122, - "StoreID": 1, - "FirstName": "THELMA", - "LastName": "MURRAY", - "Email": "THELMA.MURRAY@dvdscustomer.org", - "AddressID": 126, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.68, - "Avg": 3.95875, - "Max": 7.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 125, - "StoreID": 1, - "FirstName": "ETHEL", - "LastName": "WEBB", - "Email": "ETHEL.WEBB@dvdscustomer.org", - "AddressID": 129, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.68, - "Avg": 4.24, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 128, - "StoreID": 1, - "FirstName": "MARJORIE", - "LastName": "TUCKER", - "Email": "MARJORIE.TUCKER@dvdscustomer.org", - "AddressID": 132, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.68, - "Avg": 3.99, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 131, - "StoreID": 2, - "FirstName": "MONICA", - "LastName": "HICKS", - "Email": "MONICA.HICKS@dvdscustomer.org", - "AddressID": 135, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 128.7, - "Avg": 4.29, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 137, - "StoreID": 2, - "FirstName": "RHONDA", - "LastName": "KENNEDY", - "Email": "RHONDA.KENNEDY@dvdscustomer.org", - "AddressID": 141, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 194.61, - "Avg": 4.99, - "Max": 9.99, - "Min": 0.99, - "Count": 39 - } - }, - { - "CustomerID": 141, - "StoreID": 1, - "FirstName": "DEBBIE", - "LastName": "REYES", - "Email": "DEBBIE.REYES@dvdscustomer.org", - "AddressID": 145, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 130.68, - "Avg": 4.08375, - "Max": 7.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 144, - "StoreID": 1, - "FirstName": "CLARA", - "LastName": "SHAW", - "Email": "CLARA.SHAW@dvdscustomer.org", - "AddressID": 148, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 195.58, - "Avg": 4.656667, - "Max": 9.99, - "Min": 0.99, - "Count": 42 - } - }, - { - "CustomerID": 146, - "StoreID": 1, - "FirstName": "JAMIE", - "LastName": "RICE", - "Email": "JAMIE.RICE@dvdscustomer.org", - "AddressID": 150, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 139.71, - "Avg": 4.817586, - "Max": 7.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 147, - "StoreID": 2, - "FirstName": "JOANNE", - "LastName": "ROBERTSON", - "Email": "JOANNE.ROBERTSON@dvdscustomer.org", - "AddressID": 151, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.66, - "Avg": 3.754706, - "Max": 8.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 148, - "StoreID": 1, - "FirstName": "ELEANOR", - "LastName": "HUNT", - "Email": "ELEANOR.HUNT@dvdscustomer.org", - "AddressID": 152, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 216.54, - "Avg": 4.707391, - "Max": 10.99, - "Min": 0.99, - "Count": 46 - } - }, - { - "CustomerID": 154, - "StoreID": 2, - "FirstName": "MICHELE", - "LastName": "GRANT", - "Email": "MICHELE.GRANT@dvdscustomer.org", - "AddressID": 158, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 130.7, - "Avg": 4.356667, - "Max": 7.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 158, - "StoreID": 1, - "FirstName": "VERONICA", - "LastName": "STONE", - "Email": "VERONICA.STONE@dvdscustomer.org", - "AddressID": 162, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.68, - "Avg": 3.95875, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 168, - "StoreID": 1, - "FirstName": "REGINA", - "LastName": "BERRY", - "Email": "REGINA.BERRY@dvdscustomer.org", - "AddressID": 172, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.66, - "Avg": 3.99, - "Max": 10.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 172, - "StoreID": 1, - "FirstName": "BERNICE", - "LastName": "WILLIS", - "Email": "BERNICE.WILLIS@dvdscustomer.org", - "AddressID": 176, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 145.67, - "Avg": 4.414242, - "Max": 8.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 176, - "StoreID": 1, - "FirstName": "JUNE", - "LastName": "CARROLL", - "Email": "JUNE.CARROLL@dvdscustomer.org", - "AddressID": 180, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 173.63, - "Avg": 4.692703, - "Max": 8.99, - "Min": 0.99, - "Count": 37 - } - }, - { - "CustomerID": 178, - "StoreID": 2, - "FirstName": "MARION", - "LastName": "SNYDER", - "Email": "MARION.SNYDER@dvdscustomer.org", - "AddressID": 182, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 194.61, - "Avg": 4.99, - "Max": 10.99, - "Min": 0.99, - "Count": 39 - } - }, - { - "CustomerID": 179, - "StoreID": 1, - "FirstName": "DANA", - "LastName": "HART", - "Email": "DANA.HART@dvdscustomer.org", - "AddressID": 183, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 133.71, - "Avg": 4.61069, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 181, - "StoreID": 2, - "FirstName": "ANA", - "LastName": "BRADLEY", - "Email": "ANA.BRADLEY@dvdscustomer.org", - "AddressID": 185, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 174.66, - "Avg": 5.137059, - "Max": 9.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 187, - "StoreID": 2, - "FirstName": "BRITTANY", - "LastName": "RILEY", - "Email": "BRITTANY.RILEY@dvdscustomer.org", - "AddressID": 191, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 159.72, - "Avg": 5.704286, - "Max": 10.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 196, - "StoreID": 1, - "FirstName": "ALMA", - "LastName": "AUSTIN", - "Email": "ALMA.AUSTIN@dvdscustomer.org", - "AddressID": 200, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 151.65, - "Avg": 4.332857, - "Max": 11.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 197, - "StoreID": 2, - "FirstName": "SUE", - "LastName": "PETERS", - "Email": "SUE.PETERS@dvdscustomer.org", - "AddressID": 201, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 154.6, - "Avg": 3.865, - "Max": 9.99, - "Min": 0.99, - "Count": 40 - } - }, - { - "CustomerID": 198, - "StoreID": 2, - "FirstName": "ELSIE", - "LastName": "KELLEY", - "Email": "ELSIE.KELLEY@dvdscustomer.org", - "AddressID": 202, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 141.63, - "Avg": 3.827838, - "Max": 6.99, - "Min": 0.99, - "Count": 37 - } - }, - { - "CustomerID": 200, - "StoreID": 2, - "FirstName": "JEANNE", - "LastName": "LAWSON", - "Email": "JEANNE.LAWSON@dvdscustomer.org", - "AddressID": 204, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 136.73, - "Avg": 5.064074, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 204, - "StoreID": 1, - "FirstName": "ROSEMARY", - "LastName": "SCHMIDT", - "Email": "ROSEMARY.SCHMIDT@dvdscustomer.org", - "AddressID": 208, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 147.65, - "Avg": 4.218571, - "Max": 11.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 206, - "StoreID": 1, - "FirstName": "TERRI", - "LastName": "VASQUEZ", - "Email": "TERRI.VASQUEZ@dvdscustomer.org", - "AddressID": 210, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.73, - "Avg": 4.693704, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 207, - "StoreID": 1, - "FirstName": "GERTRUDE", - "LastName": "CASTILLO", - "Email": "GERTRUDE.CASTILLO@dvdscustomer.org", - "AddressID": 211, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 137.66, - "Avg": 4.048824, - "Max": 9.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 209, - "StoreID": 2, - "FirstName": "TONYA", - "LastName": "CHAPMAN", - "Email": "TONYA.CHAPMAN@dvdscustomer.org", - "AddressID": 213, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 161.68, - "Avg": 5.0525, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 210, - "StoreID": 2, - "FirstName": "ELLA", - "LastName": "OLIVER", - "Email": "ELLA.OLIVER@dvdscustomer.org", - "AddressID": 214, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 137.69, - "Avg": 4.441613, - "Max": 8.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 211, - "StoreID": 1, - "FirstName": "STACEY", - "LastName": "MONTGOMERY", - "Email": "STACEY.MONTGOMERY@dvdscustomer.org", - "AddressID": 215, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 151.66, - "Avg": 4.460588, - "Max": 8.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 221, - "StoreID": 1, - "FirstName": "BESSIE", - "LastName": "MORRISON", - "Email": "BESSIE.MORRISON@dvdscustomer.org", - "AddressID": 225, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 132.72, - "Avg": 4.74, - "Max": 10.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 236, - "StoreID": 1, - "FirstName": "MARCIA", - "LastName": "DEAN", - "Email": "MARCIA.DEAN@dvdscustomer.org", - "AddressID": 240, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 175.58, - "Avg": 4.180476, - "Max": 8.99, - "Min": 0.99, - "Count": 42 - } - }, - { - "CustomerID": 237, - "StoreID": 1, - "FirstName": "TANYA", - "LastName": "GILBERT", - "Email": "TANYA.GILBERT@dvdscustomer.org", - "AddressID": 241, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 144.67, - "Avg": 4.383939, - "Max": 11.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 239, - "StoreID": 2, - "FirstName": "MINNIE", - "LastName": "ROMERO", - "Email": "MINNIE.ROMERO@dvdscustomer.org", - "AddressID": 243, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 142.66, - "Avg": 4.195882, - "Max": 8.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 242, - "StoreID": 1, - "FirstName": "GLENDA", - "LastName": "FRAZIER", - "Email": "GLENDA.FRAZIER@dvdscustomer.org", - "AddressID": 246, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 140.68, - "Avg": 4.39625, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 244, - "StoreID": 2, - "FirstName": "VIOLA", - "LastName": "HANSON", - "Email": "VIOLA.HANSON@dvdscustomer.org", - "AddressID": 248, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.68, - "Avg": 4.0525, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 245, - "StoreID": 1, - "FirstName": "COURTNEY", - "LastName": "DAY", - "Email": "COURTNEY.DAY@dvdscustomer.org", - "AddressID": 249, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 132.68, - "Avg": 4.14625, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 253, - "StoreID": 1, - "FirstName": "TERRY", - "LastName": "CARLSON", - "Email": "TERRY.CARLSON@dvdscustomer.org", - "AddressID": 258, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.71, - "Avg": 4.403793, - "Max": 7.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 257, - "StoreID": 2, - "FirstName": "MARSHA", - "LastName": "DOUGLAS", - "Email": "MARSHA.DOUGLAS@dvdscustomer.org", - "AddressID": 262, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 151.63, - "Avg": 4.098108, - "Max": 7.99, - "Min": 0.99, - "Count": 37 - } - }, - { - "CustomerID": 259, - "StoreID": 2, - "FirstName": "LENA", - "LastName": "JENSEN", - "Email": "LENA.JENSEN@dvdscustomer.org", - "AddressID": 264, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 170.67, - "Avg": 5.171818, - "Max": 10.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 265, - "StoreID": 2, - "FirstName": "JENNIE", - "LastName": "TERRY", - "Email": "JENNIE.TERRY@dvdscustomer.org", - "AddressID": 270, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 133.71, - "Avg": 4.61069, - "Max": 9.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 267, - "StoreID": 1, - "FirstName": "MARGIE", - "LastName": "WADE", - "Email": "MARGIE.WADE@dvdscustomer.org", - "AddressID": 272, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 159.64, - "Avg": 4.434444, - "Max": 9.99, - "Min": 0, - "Count": 36 - } - }, - { - "CustomerID": 269, - "StoreID": 1, - "FirstName": "CASSANDRA", - "LastName": "WALTERS", - "Email": "CASSANDRA.WALTERS@dvdscustomer.org", - "AddressID": 274, - "Active": true, - "CreateDate": "2006-02-14T22:04:36Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.7, - "Avg": 4.323333, - "Max": 9.99, - "Min": 0, - "Count": 30 - } - }, - { - "CustomerID": 273, - "StoreID": 2, - "FirstName": "PRISCILLA", - "LastName": "LOWE", - "Email": "PRISCILLA.LOWE@dvdscustomer.org", - "AddressID": 278, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 157.65, - "Avg": 4.504286, - "Max": 8.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 274, - "StoreID": 1, - "FirstName": "NAOMI", - "LastName": "JENNINGS", - "Email": "NAOMI.JENNINGS@dvdscustomer.org", - "AddressID": 279, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 152.65, - "Avg": 4.361429, - "Max": 9.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 277, - "StoreID": 2, - "FirstName": "OLGA", - "LastName": "JIMENEZ", - "Email": "OLGA.JIMENEZ@dvdscustomer.org", - "AddressID": 282, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 144.68, - "Avg": 4.52125, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 279, - "StoreID": 2, - "FirstName": "DIANNE", - "LastName": "SHELTON", - "Email": "DIANNE.SHELTON@dvdscustomer.org", - "AddressID": 284, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.69, - "Avg": 4.377097, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 284, - "StoreID": 1, - "FirstName": "SONIA", - "LastName": "GREGORY", - "Email": "SONIA.GREGORY@dvdscustomer.org", - "AddressID": 289, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.72, - "Avg": 4.525714, - "Max": 8.99, - "Min": 0, - "Count": 28 - } - }, - { - "CustomerID": 285, - "StoreID": 1, - "FirstName": "MIRIAM", - "LastName": "MCKINNEY", - "Email": "MIRIAM.MCKINNEY@dvdscustomer.org", - "AddressID": 290, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.74, - "Avg": 5.220769, - "Max": 9.99, - "Min": 0.99, - "Count": 26 - } - }, - { - "CustomerID": 289, - "StoreID": 1, - "FirstName": "VIOLET", - "LastName": "RODRIQUEZ", - "Email": "VIOLET.RODRIQUEZ@dvdscustomer.org", - "AddressID": 294, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 142.7, - "Avg": 4.756667, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 293, - "StoreID": 2, - "FirstName": "MAE", - "LastName": "FLETCHER", - "Email": "MAE.FLETCHER@dvdscustomer.org", - "AddressID": 298, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 158.69, - "Avg": 5.119032, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 295, - "StoreID": 1, - "FirstName": "DAISY", - "LastName": "BATES", - "Email": "DAISY.BATES@dvdscustomer.org", - "AddressID": 300, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 162.62, - "Avg": 4.279474, - "Max": 9.99, - "Min": 0.99, - "Count": 38 - } - }, - { - "CustomerID": 296, - "StoreID": 2, - "FirstName": "RAMONA", - "LastName": "HALE", - "Email": "RAMONA.HALE@dvdscustomer.org", - "AddressID": 301, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.7, - "Avg": 4.323333, - "Max": 7.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 297, - "StoreID": 1, - "FirstName": "SHERRI", - "LastName": "RHODES", - "Email": "SHERRI.RHODES@dvdscustomer.org", - "AddressID": 302, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 128.67, - "Avg": 3.899091, - "Max": 10.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 299, - "StoreID": 2, - "FirstName": "JAMES", - "LastName": "GANNON", - "Email": "JAMES.GANNON@dvdscustomer.org", - "AddressID": 304, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 131.7, - "Avg": 4.39, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 300, - "StoreID": 1, - "FirstName": "JOHN", - "LastName": "FARNSWORTH", - "Email": "JOHN.FARNSWORTH@dvdscustomer.org", - "AddressID": 305, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 137.69, - "Avg": 4.441613, - "Max": 10.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 302, - "StoreID": 1, - "FirstName": "MICHAEL", - "LastName": "SILVERMAN", - "Email": "MICHAEL.SILVERMAN@dvdscustomer.org", - "AddressID": 307, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.71, - "Avg": 4.403793, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 306, - "StoreID": 1, - "FirstName": "CHARLES", - "LastName": "KOWALSKI", - "Email": "CHARLES.KOWALSKI@dvdscustomer.org", - "AddressID": 311, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 138.68, - "Avg": 4.33375, - "Max": 7.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 307, - "StoreID": 2, - "FirstName": "JOSEPH", - "LastName": "JOY", - "Email": "JOSEPH.JOY@dvdscustomer.org", - "AddressID": 312, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 134.7, - "Avg": 4.49, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 309, - "StoreID": 1, - "FirstName": "CHRISTOPHER", - "LastName": "GRECO", - "Email": "CHRISTOPHER.GRECO@dvdscustomer.org", - "AddressID": 314, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 147.69, - "Avg": 4.764194, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 314, - "StoreID": 1, - "FirstName": "GEORGE", - "LastName": "LINTON", - "Email": "GEORGE.LINTON@dvdscustomer.org", - "AddressID": 319, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 131.67, - "Avg": 3.99, - "Max": 6.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 316, - "StoreID": 1, - "FirstName": "STEVEN", - "LastName": "CURLEY", - "Email": "STEVEN.CURLEY@dvdscustomer.org", - "AddressID": 321, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 132.71, - "Avg": 4.576207, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 319, - "StoreID": 2, - "FirstName": "RONALD", - "LastName": "WEINER", - "Email": "RONALD.WEINER@dvdscustomer.org", - "AddressID": 324, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 132.7, - "Avg": 4.423333, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 322, - "StoreID": 1, - "FirstName": "JASON", - "LastName": "MORRISSEY", - "Email": "JASON.MORRISSEY@dvdscustomer.org", - "AddressID": 327, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 128.72, - "Avg": 4.597143, - "Max": 9.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 329, - "StoreID": 2, - "FirstName": "FRANK", - "LastName": "WAGGONER", - "Email": "FRANK.WAGGONER@dvdscustomer.org", - "AddressID": 334, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.68, - "Avg": 3.99, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 334, - "StoreID": 2, - "FirstName": "RAYMOND", - "LastName": "MCWHORTER", - "Email": "RAYMOND.MCWHORTER@dvdscustomer.org", - "AddressID": 339, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.7, - "Avg": 4.523333, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 337, - "StoreID": 1, - "FirstName": "JERRY", - "LastName": "JORDON", - "Email": "JERRY.JORDON@dvdscustomer.org", - "AddressID": 342, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 143.71, - "Avg": 4.955517, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 339, - "StoreID": 2, - "FirstName": "WALTER", - "LastName": "PERRYMAN", - "Email": "WALTER.PERRYMAN@dvdscustomer.org", - "AddressID": 344, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.7, - "Avg": 4.256667, - "Max": 7.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 342, - "StoreID": 1, - "FirstName": "HAROLD", - "LastName": "MARTINO", - "Email": "HAROLD.MARTINO@dvdscustomer.org", - "AddressID": 347, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 130.68, - "Avg": 4.08375, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 346, - "StoreID": 1, - "FirstName": "ARTHUR", - "LastName": "SIMPKINS", - "Email": "ARTHUR.SIMPKINS@dvdscustomer.org", - "AddressID": 351, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 155.68, - "Avg": 4.865, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 347, - "StoreID": 2, - "FirstName": "RYAN", - "LastName": "SALISBURY", - "Email": "RYAN.SALISBURY@dvdscustomer.org", - "AddressID": 352, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 142.7, - "Avg": 4.756667, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 348, - "StoreID": 2, - "FirstName": "ROGER", - "LastName": "QUINTANILLA", - "Email": "ROGER.QUINTANILLA@dvdscustomer.org", - "AddressID": 353, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 146.64, - "Avg": 4.073333, - "Max": 9.99, - "Min": 0.99, - "Count": 36 - } - }, - { - "CustomerID": 349, - "StoreID": 2, - "FirstName": "JOE", - "LastName": "GILLILAND", - "Email": "JOE.GILLILAND@dvdscustomer.org", - "AddressID": 354, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 138.71, - "Avg": 4.783103, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 354, - "StoreID": 2, - "FirstName": "JUSTIN", - "LastName": "NGO", - "Email": "JUSTIN.NGO@dvdscustomer.org", - "AddressID": 359, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.64, - "Avg": 3.601111, - "Max": 8.99, - "Min": 0, - "Count": 36 - } - }, - { - "CustomerID": 360, - "StoreID": 2, - "FirstName": "RALPH", - "LastName": "MADRIGAL", - "Email": "RALPH.MADRIGAL@dvdscustomer.org", - "AddressID": 365, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 150.66, - "Avg": 4.431176, - "Max": 9.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 362, - "StoreID": 1, - "FirstName": "NICHOLAS", - "LastName": "BARFIELD", - "Email": "NICHOLAS.BARFIELD@dvdscustomer.org", - "AddressID": 367, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 145.68, - "Avg": 4.5525, - "Max": 11.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 363, - "StoreID": 2, - "FirstName": "ROY", - "LastName": "WHITING", - "Email": "ROY.WHITING@dvdscustomer.org", - "AddressID": 368, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 143.71, - "Avg": 4.955517, - "Max": 9.99, - "Min": 2.99, - "Count": 29 - } - }, - { - "CustomerID": 366, - "StoreID": 1, - "FirstName": "BRANDON", - "LastName": "HUEY", - "Email": "BRANDON.HUEY@dvdscustomer.org", - "AddressID": 371, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 152.63, - "Avg": 4.125135, - "Max": 6.99, - "Min": 0.99, - "Count": 37 - } - }, - { - "CustomerID": 368, - "StoreID": 1, - "FirstName": "HARRY", - "LastName": "ARCE", - "Email": "HARRY.ARCE@dvdscustomer.org", - "AddressID": 373, - "Active": false, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 157.65, - "Avg": 4.504286, - "Max": 9.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 371, - "StoreID": 1, - "FirstName": "BILLY", - "LastName": "POULIN", - "Email": "BILLY.POULIN@dvdscustomer.org", - "AddressID": 376, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 149.65, - "Avg": 4.275714, - "Max": 10.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 372, - "StoreID": 2, - "FirstName": "STEVE", - "LastName": "MACKENZIE", - "Email": "STEVE.MACKENZIE@dvdscustomer.org", - "AddressID": 377, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 158.66, - "Avg": 4.666471, - "Max": 10.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 373, - "StoreID": 1, - "FirstName": "LOUIS", - "LastName": "LEONE", - "Email": "LOUIS.LEONE@dvdscustomer.org", - "AddressID": 378, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 161.65, - "Avg": 4.618571, - "Max": 8.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 380, - "StoreID": 1, - "FirstName": "RUSSELL", - "LastName": "BRINSON", - "Email": "RUSSELL.BRINSON@dvdscustomer.org", - "AddressID": 385, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 136.64, - "Avg": 3.795556, - "Max": 10.99, - "Min": 0.99, - "Count": 36 - } - }, - { - "CustomerID": 390, - "StoreID": 1, - "FirstName": "SHAWN", - "LastName": "HEATON", - "Email": "SHAWN.HEATON@dvdscustomer.org", - "AddressID": 395, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 152.67, - "Avg": 4.626364, - "Max": 8.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 403, - "StoreID": 1, - "FirstName": "MIKE", - "LastName": "WAY", - "Email": "MIKE.WAY@dvdscustomer.org", - "AddressID": 408, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 166.65, - "Avg": 4.761429, - "Max": 9.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 404, - "StoreID": 2, - "FirstName": "STANLEY", - "LastName": "SCROGGINS", - "Email": "STANLEY.SCROGGINS@dvdscustomer.org", - "AddressID": 409, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 139.7, - "Avg": 4.656667, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 410, - "StoreID": 2, - "FirstName": "CURTIS", - "LastName": "IRBY", - "Email": "CURTIS.IRBY@dvdscustomer.org", - "AddressID": 415, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 167.62, - "Avg": 4.411053, - "Max": 10.99, - "Min": 0.99, - "Count": 38 - } - }, - { - "CustomerID": 426, - "StoreID": 1, - "FirstName": "BRADLEY", - "LastName": "MOTLEY", - "Email": "BRADLEY.MOTLEY@dvdscustomer.org", - "AddressID": 431, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.73, - "Avg": 4.693704, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 433, - "StoreID": 1, - "FirstName": "DON", - "LastName": "BONE", - "Email": "DON.BONE@dvdscustomer.org", - "AddressID": 438, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 133.75, - "Avg": 5.35, - "Max": 10.99, - "Min": 0.99, - "Count": 25 - } - }, - { - "CustomerID": 434, - "StoreID": 1, - "FirstName": "EDDIE", - "LastName": "TOMLIN", - "Email": "EDDIE.TOMLIN@dvdscustomer.org", - "AddressID": 439, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 128.73, - "Avg": 4.767778, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 436, - "StoreID": 1, - "FirstName": "TROY", - "LastName": "QUIGLEY", - "Email": "TROY.QUIGLEY@dvdscustomer.org", - "AddressID": 441, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 144.7, - "Avg": 4.823333, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 438, - "StoreID": 1, - "FirstName": "BARRY", - "LastName": "LOVELACE", - "Email": "BARRY.LOVELACE@dvdscustomer.org", - "AddressID": 443, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 134.67, - "Avg": 4.080909, - "Max": 8.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 439, - "StoreID": 2, - "FirstName": "ALEXANDER", - "LastName": "FENNELL", - "Email": "ALEXANDER.FENNELL@dvdscustomer.org", - "AddressID": 444, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 151.64, - "Avg": 4.212222, - "Max": 9.99, - "Min": 0.99, - "Count": 36 - } - }, - { - "CustomerID": 448, - "StoreID": 1, - "FirstName": "MIGUEL", - "LastName": "BETANCOURT", - "Email": "MIGUEL.BETANCOURT@dvdscustomer.org", - "AddressID": 453, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.71, - "Avg": 4.679655, - "Max": 10.99, - "Min": 0, - "Count": 29 - } - }, - { - "CustomerID": 451, - "StoreID": 1, - "FirstName": "JIM", - "LastName": "REA", - "Email": "JIM.REA@dvdscustomer.org", - "AddressID": 456, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 128.67, - "Avg": 3.899091, - "Max": 8.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 454, - "StoreID": 2, - "FirstName": "ALEX", - "LastName": "GRESHAM", - "Email": "ALEX.GRESHAM@dvdscustomer.org", - "AddressID": 459, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 151.67, - "Avg": 4.596061, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 459, - "StoreID": 1, - "FirstName": "TOMMY", - "LastName": "COLLAZO", - "Email": "TOMMY.COLLAZO@dvdscustomer.org", - "AddressID": 464, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 186.62, - "Avg": 4.911053, - "Max": 10.99, - "Min": 0.99, - "Count": 38 - } - }, - { - "CustomerID": 462, - "StoreID": 2, - "FirstName": "WARREN", - "LastName": "SHERROD", - "Email": "WARREN.SHERROD@dvdscustomer.org", - "AddressID": 467, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 159.67, - "Avg": 4.838485, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 467, - "StoreID": 2, - "FirstName": "ALVIN", - "LastName": "DELOACH", - "Email": "ALVIN.DELOACH@dvdscustomer.org", - "AddressID": 472, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 139.71, - "Avg": 4.817586, - "Max": 9.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 468, - "StoreID": 1, - "FirstName": "TIM", - "LastName": "CARY", - "Email": "TIM.CARY@dvdscustomer.org", - "AddressID": 473, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 175.61, - "Avg": 4.502821, - "Max": 10.99, - "Min": 0.99, - "Count": 39 - } - }, - { - "CustomerID": 469, - "StoreID": 2, - "FirstName": "WESLEY", - "LastName": "BULL", - "Email": "WESLEY.BULL@dvdscustomer.org", - "AddressID": 474, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 177.6, - "Avg": 4.44, - "Max": 10.99, - "Min": 0.99, - "Count": 40 - } - }, - { - "CustomerID": 470, - "StoreID": 1, - "FirstName": "GORDON", - "LastName": "ALLARD", - "Email": "GORDON.ALLARD@dvdscustomer.org", - "AddressID": 475, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 160.68, - "Avg": 5.02125, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 472, - "StoreID": 1, - "FirstName": "GREG", - "LastName": "ROBINS", - "Email": "GREG.ROBINS@dvdscustomer.org", - "AddressID": 477, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 141.7, - "Avg": 4.723333, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 473, - "StoreID": 2, - "FirstName": "JORGE", - "LastName": "OLIVARES", - "Email": "JORGE.OLIVARES@dvdscustomer.org", - "AddressID": 478, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 134.66, - "Avg": 3.960588, - "Max": 8.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 479, - "StoreID": 1, - "FirstName": "ZACHARY", - "LastName": "HITE", - "Email": "ZACHARY.HITE@dvdscustomer.org", - "AddressID": 484, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 146.69, - "Avg": 4.731935, - "Max": 8.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 482, - "StoreID": 1, - "FirstName": "MAURICE", - "LastName": "CRAWLEY", - "Email": "MAURICE.CRAWLEY@dvdscustomer.org", - "AddressID": 487, - "Active": false, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 138.71, - "Avg": 4.783103, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 484, - "StoreID": 1, - "FirstName": "ROBERTO", - "LastName": "VU", - "Email": "ROBERTO.VU@dvdscustomer.org", - "AddressID": 489, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 139.7, - "Avg": 4.656667, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 494, - "StoreID": 2, - "FirstName": "RAMON", - "LastName": "CHOATE", - "Email": "RAMON.CHOATE@dvdscustomer.org", - "AddressID": 499, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 140.69, - "Avg": 4.538387, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 497, - "StoreID": 2, - "FirstName": "GILBERT", - "LastName": "SLEDGE", - "Email": "GILBERT.SLEDGE@dvdscustomer.org", - "AddressID": 502, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.72, - "Avg": 4.632857, - "Max": 9.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 502, - "StoreID": 1, - "FirstName": "BRETT", - "LastName": "CORNWELL", - "Email": "BRETT.CORNWELL@dvdscustomer.org", - "AddressID": 507, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 138.66, - "Avg": 4.078235, - "Max": 9.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 504, - "StoreID": 1, - "FirstName": "NATHANIEL", - "LastName": "ADAM", - "Email": "NATHANIEL.ADAM@dvdscustomer.org", - "AddressID": 509, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 133.72, - "Avg": 4.775714, - "Max": 9.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 506, - "StoreID": 2, - "FirstName": "LESLIE", - "LastName": "SEWARD", - "Email": "LESLIE.SEWARD@dvdscustomer.org", - "AddressID": 511, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 152.65, - "Avg": 4.361429, - "Max": 9.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 508, - "StoreID": 2, - "FirstName": "MILTON", - "LastName": "HOWLAND", - "Email": "MILTON.HOWLAND@dvdscustomer.org", - "AddressID": 513, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 127.75, - "Avg": 5.11, - "Max": 9.99, - "Min": 0.99, - "Count": 25 - } - }, - { - "CustomerID": 513, - "StoreID": 2, - "FirstName": "DUANE", - "LastName": "TUBBS", - "Email": "DUANE.TUBBS@dvdscustomer.org", - "AddressID": 519, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 148.69, - "Avg": 4.796452, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 515, - "StoreID": 1, - "FirstName": "ANDRE", - "LastName": "RAPP", - "Email": "ANDRE.RAPP@dvdscustomer.org", - "AddressID": 521, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.72, - "Avg": 4.525714, - "Max": 8.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 520, - "StoreID": 2, - "FirstName": "MITCHELL", - "LastName": "WESTMORELAND", - "Email": "MITCHELL.WESTMORELAND@dvdscustomer.org", - "AddressID": 526, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 134.68, - "Avg": 4.20875, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 522, - "StoreID": 2, - "FirstName": "ARNOLD", - "LastName": "HAVENS", - "Email": "ARNOLD.HAVENS@dvdscustomer.org", - "AddressID": 528, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 167.67, - "Avg": 5.080909, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 526, - "StoreID": 2, - "FirstName": "KARL", - "LastName": "SEAL", - "Email": "KARL.SEAL@dvdscustomer.org", - "AddressID": 532, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 221.55, - "Avg": 4.923333, - "Max": 10.99, - "Min": 0.99, - "Count": 45 - } - }, - { - "CustomerID": 532, - "StoreID": 2, - "FirstName": "NEIL", - "LastName": "RENNER", - "Email": "NEIL.RENNER@dvdscustomer.org", - "AddressID": 538, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 152.68, - "Avg": 4.77125, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 533, - "StoreID": 1, - "FirstName": "JESSIE", - "LastName": "MILAM", - "Email": "JESSIE.MILAM@dvdscustomer.org", - "AddressID": 539, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 141.67, - "Avg": 4.29303, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 535, - "StoreID": 1, - "FirstName": "JAVIER", - "LastName": "ELROD", - "Email": "JAVIER.ELROD@dvdscustomer.org", - "AddressID": 541, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.68, - "Avg": 4.24, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 550, - "StoreID": 2, - "FirstName": "GUY", - "LastName": "BROWNLEE", - "Email": "GUY.BROWNLEE@dvdscustomer.org", - "AddressID": 556, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 159.68, - "Avg": 4.99, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 558, - "StoreID": 1, - "FirstName": "JIMMIE", - "LastName": "EGGLESTON", - "Email": "JIMMIE.EGGLESTON@dvdscustomer.org", - "AddressID": 564, - "Active": false, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 135.72, - "Avg": 4.847143, - "Max": 10.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 560, - "StoreID": 1, - "FirstName": "JORDAN", - "LastName": "ARCHULETA", - "Email": "JORDAN.ARCHULETA@dvdscustomer.org", - "AddressID": 566, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 132.7, - "Avg": 4.423333, - "Max": 9.99, - "Min": 0, - "Count": 30 - } - }, - { - "CustomerID": 565, - "StoreID": 2, - "FirstName": "JAIME", - "LastName": "NETTLES", - "Email": "JAIME.NETTLES@dvdscustomer.org", - "AddressID": 571, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.71, - "Avg": 4.36931, - "Max": 10.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 566, - "StoreID": 1, - "FirstName": "CASEY", - "LastName": "MENA", - "Email": "CASEY.MENA@dvdscustomer.org", - "AddressID": 572, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 141.66, - "Avg": 4.166471, - "Max": 9.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 569, - "StoreID": 2, - "FirstName": "DAVE", - "LastName": "GARDINER", - "Email": "DAVE.GARDINER@dvdscustomer.org", - "AddressID": 575, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 134.68, - "Avg": 4.20875, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 575, - "StoreID": 2, - "FirstName": "ISAAC", - "LastName": "OGLESBY", - "Email": "ISAAC.OGLESBY@dvdscustomer.org", - "AddressID": 581, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 126.71, - "Avg": 4.36931, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 576, - "StoreID": 2, - "FirstName": "MORRIS", - "LastName": "MCCARTER", - "Email": "MORRIS.MCCARTER@dvdscustomer.org", - "AddressID": 582, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 139.66, - "Avg": 4.107647, - "Max": 8.99, - "Min": 0, - "Count": 34 - } - }, - { - "CustomerID": 584, - "StoreID": 2, - "FirstName": "SALVADOR", - "LastName": "TEEL", - "Email": "SALVADOR.TEEL@dvdscustomer.org", - "AddressID": 590, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.7, - "Avg": 4.323333, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 589, - "StoreID": 1, - "FirstName": "TRACY", - "LastName": "HERRMANN", - "Email": "TRACY.HERRMANN@dvdscustomer.org", - "AddressID": 595, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 129.72, - "Avg": 4.632857, - "Max": 9.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 591, - "StoreID": 1, - "FirstName": "KENT", - "LastName": "ARSENAULT", - "Email": "KENT.ARSENAULT@dvdscustomer.org", - "AddressID": 597, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 134.73, - "Avg": 4.99, - "Max": 11.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 594, - "StoreID": 1, - "FirstName": "EDUARDO", - "LastName": "HIATT", - "Email": "EDUARDO.HIATT@dvdscustomer.org", - "AddressID": 600, - "Active": true, - "CreateDate": "2006-02-14T22:04:37Z", - "LastUpdate": "2006-02-15T04:57:20Z", - "Amount": { - "Sum": 130.73, - "Avg": 4.841852, - "Max": 8.99, - "Min": 0.99, - "Count": 27 - } - } -] \ No newline at end of file diff --git a/tests/mysql/testdata/lang_film_actor_inventory_rental.json b/tests/mysql/testdata/lang_film_actor_inventory_rental.json deleted file mode 100644 index 92ee5a5..0000000 --- a/tests/mysql/testdata/lang_film_actor_inventory_rental.json +++ /dev/null @@ -1,2462 +0,0 @@ -[ - { - "LanguageID": 1, - "Name": "English", - "LastUpdate": "2006-02-15T05:02:19Z", - "Films": [ - { - "FilmID": 1, - "Title": "ACADEMY DINOSAUR", - "Description": "A Epic Drama of a Feminist And a Mad Scientist who must Battle a Teacher in The Canadian Rockies", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 6, - "RentalRate": 0.99, - "Length": 86, - "ReplacementCost": 20.99, - "Rating": "PG", - "SpecialFeatures": "Deleted Scenes,Behind the Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 1, - "FirstName": "PENELOPE", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 10, - "FirstName": "CHRISTIAN", - "LastName": "GABLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 30, - "FirstName": "SANDRA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 40, - "FirstName": "JOHNNY", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 108, - "FirstName": "WARREN", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 162, - "FirstName": "OPRAH", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 188, - "FirstName": "ROCK", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 1, - "FilmID": 1, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 4863, - "RentalDate": "2005-07-08T19:03:15Z", - "InventoryID": 1, - "CustomerID": 431, - "ReturnDate": "2005-07-11T21:29:15Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 11433, - "RentalDate": "2005-08-02T20:13:10Z", - "InventoryID": 1, - "CustomerID": 518, - "ReturnDate": "2005-08-11T21:35:10Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14714, - "RentalDate": "2005-08-21T21:27:43Z", - "InventoryID": 1, - "CustomerID": 279, - "ReturnDate": "2005-08-30T22:26:43Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 2, - "FilmID": 1, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 972, - "RentalDate": "2005-05-30T20:21:07Z", - "InventoryID": 2, - "CustomerID": 411, - "ReturnDate": "2005-06-06T00:36:07Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 2117, - "RentalDate": "2005-06-17T20:24:00Z", - "InventoryID": 2, - "CustomerID": 170, - "ReturnDate": "2005-06-23T17:45:00Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 4187, - "RentalDate": "2005-07-07T10:41:31Z", - "InventoryID": 2, - "CustomerID": 161, - "ReturnDate": "2005-07-11T06:25:31Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 9449, - "RentalDate": "2005-07-30T22:02:34Z", - "InventoryID": 2, - "CustomerID": 581, - "ReturnDate": "2005-08-06T02:09:34Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15453, - "RentalDate": "2005-08-23T01:01:01Z", - "InventoryID": 2, - "CustomerID": 359, - "ReturnDate": "2005-08-30T20:08:01Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 3, - "FilmID": 1, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 10126, - "RentalDate": "2005-07-31T21:36:07Z", - "InventoryID": 3, - "CustomerID": 39, - "ReturnDate": "2005-08-03T23:59:07Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15421, - "RentalDate": "2005-08-22T23:56:37Z", - "InventoryID": 3, - "CustomerID": 541, - "ReturnDate": "2005-08-25T18:58:37Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 4, - "FilmID": 1, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 10883, - "RentalDate": "2005-08-02T00:47:19Z", - "InventoryID": 4, - "CustomerID": 301, - "ReturnDate": "2005-08-03T00:02:19Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14624, - "RentalDate": "2005-08-21T18:32:42Z", - "InventoryID": 4, - "CustomerID": 344, - "ReturnDate": "2005-08-23T21:09:42Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 5, - "FilmID": 1, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": null - }, - { - "InventoryID": 6, - "FilmID": 1, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 361, - "RentalDate": "2005-05-27T07:03:28Z", - "InventoryID": 6, - "CustomerID": 587, - "ReturnDate": "2005-05-31T08:01:28Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 3201, - "RentalDate": "2005-06-21T00:30:26Z", - "InventoryID": 6, - "CustomerID": 597, - "ReturnDate": "2005-06-28T03:42:26Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 4390, - "RentalDate": "2005-07-07T20:59:06Z", - "InventoryID": 6, - "CustomerID": 44, - "ReturnDate": "2005-07-09T00:04:06Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7168, - "RentalDate": "2005-07-27T07:51:11Z", - "InventoryID": 6, - "CustomerID": 252, - "ReturnDate": "2005-08-01T04:08:11Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14098, - "RentalDate": "2005-08-21T00:30:32Z", - "InventoryID": 6, - "CustomerID": 554, - "ReturnDate": null, - "StaffID": 2, - "LastUpdate": "2006-02-23T04:12:08Z" - } - ] - }, - { - "InventoryID": 7, - "FilmID": 1, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 1210, - "RentalDate": "2005-06-15T02:57:51Z", - "InventoryID": 7, - "CustomerID": 345, - "ReturnDate": "2005-06-20T01:41:51Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 5766, - "RentalDate": "2005-07-10T13:07:31Z", - "InventoryID": 7, - "CustomerID": 406, - "ReturnDate": "2005-07-16T13:03:31Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 8510, - "RentalDate": "2005-07-29T09:41:38Z", - "InventoryID": 7, - "CustomerID": 487, - "ReturnDate": "2005-08-05T05:30:38Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14798, - "RentalDate": "2005-08-22T00:44:08Z", - "InventoryID": 7, - "CustomerID": 92, - "ReturnDate": "2005-08-27T02:18:08Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 8, - "FilmID": 1, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 10141, - "RentalDate": "2005-07-31T22:08:29Z", - "InventoryID": 8, - "CustomerID": 8, - "ReturnDate": "2005-08-06T16:59:29Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12651, - "RentalDate": "2005-08-18T18:36:16Z", - "InventoryID": 8, - "CustomerID": 34, - "ReturnDate": "2005-08-22T22:01:16Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 2, - "Title": "ACE GOLDFINGER", - "Description": "A Astounding Epistle of a Database Administrator And a Explorer who must Find a Car in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 3, - "RentalRate": 4.99, - "Length": 48, - "ReplacementCost": 12.99, - "Rating": "G", - "SpecialFeatures": "Trailers,Deleted Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 19, - "FirstName": "BOB", - "LastName": "FAWCETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 85, - "FirstName": "MINNIE", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 160, - "FirstName": "CHRIS", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 9, - "FilmID": 2, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 10310, - "RentalDate": "2005-08-01T04:24:47Z", - "InventoryID": 9, - "CustomerID": 271, - "ReturnDate": "2005-08-04T05:36:47Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 13421, - "RentalDate": "2006-02-14T15:16:03Z", - "InventoryID": 9, - "CustomerID": 366, - "ReturnDate": null, - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 10, - "FilmID": 2, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 4364, - "RentalDate": "2005-07-07T19:46:51Z", - "InventoryID": 10, - "CustomerID": 145, - "ReturnDate": "2005-07-08T21:55:51Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7733, - "RentalDate": "2005-07-28T05:04:47Z", - "InventoryID": 10, - "CustomerID": 82, - "ReturnDate": "2005-08-05T05:12:47Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15218, - "RentalDate": "2005-08-22T16:59:05Z", - "InventoryID": 10, - "CustomerID": 139, - "ReturnDate": "2005-08-30T17:01:05Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 11, - "FilmID": 2, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 10992, - "RentalDate": "2005-08-02T04:41:17Z", - "InventoryID": 11, - "CustomerID": 180, - "ReturnDate": "2005-08-09T02:13:17Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 11758, - "RentalDate": "2005-08-17T09:33:02Z", - "InventoryID": 11, - "CustomerID": 533, - "ReturnDate": "2005-08-24T05:03:02Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 3, - "Title": "ADAPTATION HOLES", - "Description": "A Astounding Reflection of a Lumberjack And a Car who must Sink a Lumberjack in A Baloon Factory", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 7, - "RentalRate": 2.99, - "Length": 50, - "ReplacementCost": 18.99, - "Rating": "NC-17", - "SpecialFeatures": "Trailers,Deleted Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 2, - "FirstName": "NICK", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 19, - "FirstName": "BOB", - "LastName": "FAWCETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 24, - "FirstName": "CAMERON", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 64, - "FirstName": "RAY", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 12, - "FilmID": 3, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 6999, - "RentalDate": "2005-07-27T01:21:19Z", - "InventoryID": 12, - "CustomerID": 224, - "ReturnDate": "2005-07-29T20:33:19Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14882, - "RentalDate": "2005-08-22T03:52:21Z", - "InventoryID": 12, - "CustomerID": 417, - "ReturnDate": "2005-08-25T04:50:21Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 13, - "FilmID": 3, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 11306, - "RentalDate": "2005-08-02T15:45:10Z", - "InventoryID": 13, - "CustomerID": 247, - "ReturnDate": "2005-08-03T21:14:10Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15788, - "RentalDate": "2005-08-23T13:54:39Z", - "InventoryID": 13, - "CustomerID": 269, - "ReturnDate": "2005-08-26T10:17:39Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 14, - "FilmID": 3, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 1033, - "RentalDate": "2005-05-31T04:50:07Z", - "InventoryID": 14, - "CustomerID": 25, - "ReturnDate": "2005-06-02T01:53:07Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 1427, - "RentalDate": "2005-06-15T18:17:28Z", - "InventoryID": 14, - "CustomerID": 100, - "ReturnDate": "2005-06-16T15:47:28Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 3897, - "RentalDate": "2005-07-06T19:11:43Z", - "InventoryID": 14, - "CustomerID": 277, - "ReturnDate": "2005-07-11T21:50:43Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10437, - "RentalDate": "2005-08-01T08:51:04Z", - "InventoryID": 14, - "CustomerID": 1, - "ReturnDate": "2005-08-10T12:12:04Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 11845, - "RentalDate": "2005-08-17T13:16:38Z", - "InventoryID": 14, - "CustomerID": 65, - "ReturnDate": "2005-08-18T11:21:38Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 15, - "FilmID": 3, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 3956, - "RentalDate": "2005-07-06T22:01:51Z", - "InventoryID": 15, - "CustomerID": 147, - "ReturnDate": "2005-07-12T21:35:51Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7586, - "RentalDate": "2005-07-27T23:19:29Z", - "InventoryID": 15, - "CustomerID": 316, - "ReturnDate": "2005-07-29T23:04:29Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12727, - "RentalDate": "2005-08-18T21:45:15Z", - "InventoryID": 15, - "CustomerID": 178, - "ReturnDate": "2005-08-24T15:52:15Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 4, - "Title": "AFFAIR PREJUDICE", - "Description": "A Fanciful Documentary of a Frisbee And a Lumberjack who must Chase a Monkey in A Shark Tank", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 5, - "RentalRate": 2.99, - "Length": 117, - "ReplacementCost": 26.99, - "Rating": "G", - "SpecialFeatures": "Commentaries,Behind the Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 81, - "FirstName": "SCARLETT", - "LastName": "DAMON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 88, - "FirstName": "KENNETH", - "LastName": "PESCI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 147, - "FirstName": "FAY", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 162, - "FirstName": "OPRAH", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 16, - "FilmID": 4, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 6493, - "RentalDate": "2005-07-12T02:40:41Z", - "InventoryID": 16, - "CustomerID": 184, - "ReturnDate": "2005-07-16T04:56:41Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 8931, - "RentalDate": "2005-07-30T02:30:07Z", - "InventoryID": 16, - "CustomerID": 268, - "ReturnDate": "2005-08-02T08:24:07Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15352, - "RentalDate": "2005-08-22T21:16:54Z", - "InventoryID": 16, - "CustomerID": 560, - "ReturnDate": "2005-08-31T00:38:54Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 17, - "FilmID": 4, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 995, - "RentalDate": "2005-05-31T00:06:02Z", - "InventoryID": 17, - "CustomerID": 150, - "ReturnDate": "2005-06-06T02:30:02Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 2090, - "RentalDate": "2005-06-17T18:06:14Z", - "InventoryID": 17, - "CustomerID": 197, - "ReturnDate": "2005-06-22T23:52:14Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 5682, - "RentalDate": "2005-07-10T08:51:39Z", - "InventoryID": 17, - "CustomerID": 302, - "ReturnDate": "2005-07-12T14:44:39Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 6970, - "RentalDate": "2005-07-27T00:26:14Z", - "InventoryID": 17, - "CustomerID": 418, - "ReturnDate": "2005-08-03T20:00:14Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 11714, - "RentalDate": "2005-08-17T07:34:55Z", - "InventoryID": 17, - "CustomerID": 151, - "ReturnDate": "2005-08-18T04:07:55Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 18, - "FilmID": 4, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 8331, - "RentalDate": "2005-07-29T04:13:29Z", - "InventoryID": 18, - "CustomerID": 148, - "ReturnDate": "2005-08-04T07:09:29Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15199, - "RentalDate": "2005-08-22T16:17:49Z", - "InventoryID": 18, - "CustomerID": 216, - "ReturnDate": "2005-08-25T20:12:49Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 19, - "FilmID": 4, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 3506, - "RentalDate": "2005-07-06T00:22:29Z", - "InventoryID": 19, - "CustomerID": 459, - "ReturnDate": "2005-07-07T22:15:29Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 9863, - "RentalDate": "2005-07-31T13:05:29Z", - "InventoryID": 19, - "CustomerID": 239, - "ReturnDate": "2005-08-08T12:33:29Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15174, - "RentalDate": "2005-08-22T15:26:36Z", - "InventoryID": 19, - "CustomerID": 111, - "ReturnDate": "2005-08-31T10:47:36Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 20, - "FilmID": 4, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 465, - "RentalDate": "2005-05-27T20:44:36Z", - "InventoryID": 20, - "CustomerID": 261, - "ReturnDate": "2005-06-02T02:43:36Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 1716, - "RentalDate": "2005-06-16T14:39:31Z", - "InventoryID": 20, - "CustomerID": 24, - "ReturnDate": "2005-06-19T15:37:31Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 4789, - "RentalDate": "2005-07-08T16:22:01Z", - "InventoryID": 20, - "CustomerID": 73, - "ReturnDate": "2005-07-15T18:29:01Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12726, - "RentalDate": "2005-08-18T21:44:46Z", - "InventoryID": 20, - "CustomerID": 397, - "ReturnDate": "2005-08-19T21:58:46Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 21, - "FilmID": 4, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 6348, - "RentalDate": "2005-07-11T20:21:18Z", - "InventoryID": 21, - "CustomerID": 66, - "ReturnDate": "2005-07-19T15:56:18Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 9359, - "RentalDate": "2005-07-30T18:39:28Z", - "InventoryID": 21, - "CustomerID": 501, - "ReturnDate": "2005-07-31T15:39:28Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15542, - "RentalDate": "2006-02-14T15:16:03Z", - "InventoryID": 21, - "CustomerID": 111, - "ReturnDate": null, - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 22, - "FilmID": 4, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 4802, - "RentalDate": "2005-07-08T16:55:17Z", - "InventoryID": 22, - "CustomerID": 562, - "ReturnDate": "2005-07-15T19:34:17Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 8002, - "RentalDate": "2005-07-28T15:11:00Z", - "InventoryID": 22, - "CustomerID": 449, - "ReturnDate": "2005-07-31T15:46:00Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 13943, - "RentalDate": "2005-08-20T17:31:18Z", - "InventoryID": 22, - "CustomerID": 464, - "ReturnDate": "2005-08-24T11:33:18Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 5, - "Title": "AFRICAN EGG", - "Description": "A Fast-Paced Documentary of a Pastry Chef And a Dentist who must Pursue a Forensic Psychologist in The Gulf of Mexico", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 6, - "RentalRate": 2.99, - "Length": 130, - "ReplacementCost": 22.99, - "Rating": "G", - "SpecialFeatures": "Deleted Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 59, - "FirstName": "DUSTIN", - "LastName": "TAUTOU", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 181, - "FirstName": "MATTHEW", - "LastName": "CARREY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 200, - "FirstName": "THORA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 23, - "FilmID": 5, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 552, - "RentalDate": "2005-05-28T07:53:38Z", - "InventoryID": 23, - "CustomerID": 106, - "ReturnDate": "2005-06-04T12:45:38Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 1614, - "RentalDate": "2005-06-16T06:58:02Z", - "InventoryID": 23, - "CustomerID": 489, - "ReturnDate": "2005-06-23T11:24:02Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 6615, - "RentalDate": "2005-07-12T08:36:22Z", - "InventoryID": 23, - "CustomerID": 438, - "ReturnDate": "2005-07-20T09:03:22Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 11129, - "RentalDate": "2005-08-02T09:08:44Z", - "InventoryID": 23, - "CustomerID": 566, - "ReturnDate": "2005-08-04T04:00:44Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12926, - "RentalDate": "2005-08-19T05:00:16Z", - "InventoryID": 23, - "CustomerID": 336, - "ReturnDate": "2005-08-26T06:12:16Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 24, - "FilmID": 5, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 2255, - "RentalDate": "2005-06-18T05:21:12Z", - "InventoryID": 24, - "CustomerID": 410, - "ReturnDate": "2005-06-26T09:19:12Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 5362, - "RentalDate": "2005-07-09T18:16:08Z", - "InventoryID": 24, - "CustomerID": 266, - "ReturnDate": "2005-07-18T18:27:08Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7793, - "RentalDate": "2005-07-28T07:26:14Z", - "InventoryID": 24, - "CustomerID": 32, - "ReturnDate": "2005-08-03T07:45:14Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 13043, - "RentalDate": "2005-08-19T09:07:13Z", - "InventoryID": 24, - "CustomerID": 127, - "ReturnDate": "2005-08-27T07:49:13Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 25, - "FilmID": 5, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 5030, - "RentalDate": "2005-07-09T02:35:43Z", - "InventoryID": 25, - "CustomerID": 497, - "ReturnDate": "2005-07-17T02:05:43Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 9851, - "RentalDate": "2005-07-31T12:50:24Z", - "InventoryID": 25, - "CustomerID": 49, - "ReturnDate": "2005-08-08T08:30:24Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15458, - "RentalDate": "2006-02-14T15:16:03Z", - "InventoryID": 25, - "CustomerID": 590, - "ReturnDate": null, - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 6, - "Title": "AGENT TRUMAN", - "Description": "A Intrepid Panorama of a Robot And a Boy who must Escape a Sumo Wrestler in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 169, - "ReplacementCost": 17.99, - "Rating": "PG", - "SpecialFeatures": "Deleted Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 21, - "FirstName": "KIRSTEN", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 108, - "FirstName": "WARREN", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 137, - "FirstName": "MORGAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 169, - "FirstName": "KENNETH", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 26, - "FilmID": 6, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 317, - "RentalDate": "2005-05-26T23:23:56Z", - "InventoryID": 26, - "CustomerID": 391, - "ReturnDate": "2005-06-01T19:56:56Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 3391, - "RentalDate": "2005-06-21T15:11:02Z", - "InventoryID": 26, - "CustomerID": 45, - "ReturnDate": "2005-06-25T14:12:02Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 4594, - "RentalDate": "2005-07-08T06:40:06Z", - "InventoryID": 26, - "CustomerID": 506, - "ReturnDate": "2005-07-16T05:51:06Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 8353, - "RentalDate": "2005-07-29T04:52:10Z", - "InventoryID": 26, - "CustomerID": 585, - "ReturnDate": "2005-07-30T04:01:10Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12764, - "RentalDate": "2005-08-18T23:14:15Z", - "InventoryID": 26, - "CustomerID": 183, - "ReturnDate": "2005-08-22T20:23:15Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 27, - "FilmID": 6, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 2965, - "RentalDate": "2005-06-20T07:33:38Z", - "InventoryID": 27, - "CustomerID": 46, - "ReturnDate": "2005-06-29T11:45:38Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 3567, - "RentalDate": "2005-07-06T03:09:36Z", - "InventoryID": 27, - "CustomerID": 355, - "ReturnDate": "2005-07-12T02:15:36Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10526, - "RentalDate": "2005-08-01T11:55:33Z", - "InventoryID": 27, - "CustomerID": 14, - "ReturnDate": "2005-08-08T16:42:33Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 11944, - "RentalDate": "2005-08-17T17:02:42Z", - "InventoryID": 27, - "CustomerID": 389, - "ReturnDate": "2005-08-21T16:40:42Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 28, - "FilmID": 6, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 8263, - "RentalDate": "2005-07-29T01:11:23Z", - "InventoryID": 28, - "CustomerID": 5, - "ReturnDate": "2005-07-31T01:53:23Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 13796, - "RentalDate": "2005-08-20T12:32:32Z", - "InventoryID": 28, - "CustomerID": 209, - "ReturnDate": "2005-08-29T10:48:32Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 29, - "FilmID": 6, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 5806, - "RentalDate": "2005-07-10T15:11:54Z", - "InventoryID": 29, - "CustomerID": 108, - "ReturnDate": "2005-07-15T11:51:54Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10485, - "RentalDate": "2005-08-01T10:20:34Z", - "InventoryID": 29, - "CustomerID": 50, - "ReturnDate": "2005-08-09T09:20:34Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12513, - "RentalDate": "2005-08-18T13:31:45Z", - "InventoryID": 29, - "CustomerID": 527, - "ReturnDate": "2005-08-25T08:26:45Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 30, - "FilmID": 6, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 259, - "RentalDate": "2005-05-26T15:32:46Z", - "InventoryID": 30, - "CustomerID": 482, - "ReturnDate": "2005-06-04T15:27:46Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 2569, - "RentalDate": "2005-06-19T04:19:04Z", - "InventoryID": 30, - "CustomerID": 213, - "ReturnDate": "2005-06-26T04:31:04Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 3756, - "RentalDate": "2005-07-06T12:40:38Z", - "InventoryID": 30, - "CustomerID": 320, - "ReturnDate": "2005-07-11T09:29:38Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7810, - "RentalDate": "2005-07-28T08:00:38Z", - "InventoryID": 30, - "CustomerID": 537, - "ReturnDate": "2005-08-02T06:14:38Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12463, - "RentalDate": "2005-08-18T11:31:34Z", - "InventoryID": 30, - "CustomerID": 214, - "ReturnDate": "2005-08-23T12:04:34Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 31, - "FilmID": 6, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 11261, - "RentalDate": "2005-08-02T13:54:26Z", - "InventoryID": 31, - "CustomerID": 204, - "ReturnDate": "2005-08-10T19:04:26Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14554, - "RentalDate": "2005-08-21T16:03:01Z", - "InventoryID": 31, - "CustomerID": 38, - "ReturnDate": "2005-08-26T13:09:01Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 7, - "Title": "AIRPLANE SIERRA", - "Description": "A Touching Saga of a Hunter And a Butler who must Discover a Butler in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 62, - "ReplacementCost": 28.99, - "Rating": "PG-13", - "SpecialFeatures": "Trailers,Deleted Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 99, - "FirstName": "JIM", - "LastName": "MOSTEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 133, - "FirstName": "RICHARD", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 162, - "FirstName": "OPRAH", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 170, - "FirstName": "MENA", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 185, - "FirstName": "MICHAEL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 32, - "FilmID": 7, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 11084, - "RentalDate": "2005-08-02T07:34:19Z", - "InventoryID": 32, - "CustomerID": 369, - "ReturnDate": "2005-08-07T09:30:19Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14942, - "RentalDate": "2005-08-22T05:58:27Z", - "InventoryID": 32, - "CustomerID": 471, - "ReturnDate": "2005-08-31T10:08:27Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 33, - "FilmID": 7, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 3159, - "RentalDate": "2005-06-20T21:11:50Z", - "InventoryID": 33, - "CustomerID": 388, - "ReturnDate": "2005-06-29T19:35:50Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 4937, - "RentalDate": "2005-07-08T22:29:59Z", - "InventoryID": 33, - "CustomerID": 273, - "ReturnDate": "2005-07-15T21:51:59Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10205, - "RentalDate": "2005-08-01T00:48:24Z", - "InventoryID": 33, - "CustomerID": 87, - "ReturnDate": "2005-08-06T23:53:24Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15224, - "RentalDate": "2005-08-22T17:18:05Z", - "InventoryID": 33, - "CustomerID": 81, - "ReturnDate": "2005-08-29T14:35:05Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 34, - "FilmID": 7, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 6876, - "RentalDate": "2005-07-12T20:32:50Z", - "InventoryID": 34, - "CustomerID": 531, - "ReturnDate": "2005-07-16T21:12:50Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7156, - "RentalDate": "2005-07-27T07:19:34Z", - "InventoryID": 34, - "CustomerID": 154, - "ReturnDate": "2005-07-31T04:31:34Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 13303, - "RentalDate": "2005-08-19T18:55:21Z", - "InventoryID": 34, - "CustomerID": 184, - "ReturnDate": "2005-08-23T18:49:21Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 35, - "FilmID": 7, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 3378, - "RentalDate": "2005-06-21T13:51:28Z", - "InventoryID": 35, - "CustomerID": 387, - "ReturnDate": "2005-06-25T09:21:28Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 6287, - "RentalDate": "2005-07-11T17:00:04Z", - "InventoryID": 35, - "CustomerID": 93, - "ReturnDate": "2005-07-12T13:16:04Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7352, - "RentalDate": "2005-07-27T14:38:29Z", - "InventoryID": 35, - "CustomerID": 429, - "ReturnDate": "2005-07-28T14:24:29Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14215, - "RentalDate": "2005-08-21T04:34:11Z", - "InventoryID": 35, - "CustomerID": 54, - "ReturnDate": "2005-08-27T10:30:11Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 36, - "FilmID": 7, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 9751, - "RentalDate": "2005-07-31T09:20:50Z", - "InventoryID": 36, - "CustomerID": 202, - "ReturnDate": "2005-08-01T05:34:50Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12500, - "RentalDate": "2005-08-18T13:05:51Z", - "InventoryID": 36, - "CustomerID": 310, - "ReturnDate": "2005-08-19T14:54:51Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 8, - "Title": "AIRPORT POLLOCK", - "Description": "A Epic Tale of a Moose And a Girl who must Confront a Monkey in Ancient India", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 54, - "ReplacementCost": 15.99, - "Rating": "R", - "SpecialFeatures": "Trailers", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 55, - "FirstName": "FAY", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 96, - "FirstName": "GENE", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 110, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 138, - "FirstName": "LUCILLE", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 37, - "FilmID": 8, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 120, - "RentalDate": "2005-05-25T19:37:47Z", - "InventoryID": 37, - "CustomerID": 365, - "ReturnDate": "2005-06-01T23:29:47Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 2360, - "RentalDate": "2005-06-18T13:11:13Z", - "InventoryID": 37, - "CustomerID": 57, - "ReturnDate": "2005-06-23T15:32:13Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 4626, - "RentalDate": "2005-07-08T08:18:21Z", - "InventoryID": 37, - "CustomerID": 268, - "ReturnDate": "2005-07-10T11:36:21Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10422, - "RentalDate": "2005-08-01T08:17:11Z", - "InventoryID": 37, - "CustomerID": 166, - "ReturnDate": "2005-08-10T10:08:11Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14483, - "RentalDate": "2005-08-21T13:43:59Z", - "InventoryID": 37, - "CustomerID": 275, - "ReturnDate": "2005-08-28T16:38:59Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 38, - "FilmID": 8, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 6219, - "RentalDate": "2005-07-11T13:18:37Z", - "InventoryID": 38, - "CustomerID": 303, - "ReturnDate": "2005-07-13T13:18:37Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7845, - "RentalDate": "2005-07-28T09:18:07Z", - "InventoryID": 38, - "CustomerID": 352, - "ReturnDate": "2005-08-04T10:23:07Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15989, - "RentalDate": "2005-08-23T20:24:36Z", - "InventoryID": 38, - "CustomerID": 96, - "ReturnDate": "2005-08-26T20:35:36Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 39, - "FilmID": 8, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 785, - "RentalDate": "2005-05-29T15:08:41Z", - "InventoryID": 39, - "CustomerID": 72, - "ReturnDate": "2005-05-30T15:51:41Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 1814, - "RentalDate": "2005-06-16T21:15:22Z", - "InventoryID": 39, - "CustomerID": 144, - "ReturnDate": "2005-06-23T17:00:22Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 3807, - "RentalDate": "2005-07-06T15:11:44Z", - "InventoryID": 39, - "CustomerID": 425, - "ReturnDate": "2005-07-10T09:20:44Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10026, - "RentalDate": "2005-07-31T18:31:51Z", - "InventoryID": 39, - "CustomerID": 332, - "ReturnDate": "2005-08-03T21:14:51Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12559, - "RentalDate": "2005-08-18T14:53:58Z", - "InventoryID": 39, - "CustomerID": 513, - "ReturnDate": "2005-08-25T20:22:58Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 40, - "FilmID": 8, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 1058, - "RentalDate": "2005-05-31T08:04:17Z", - "InventoryID": 40, - "CustomerID": 116, - "ReturnDate": "2005-06-03T11:12:17Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 2771, - "RentalDate": "2005-06-19T17:54:48Z", - "InventoryID": 40, - "CustomerID": 262, - "ReturnDate": "2005-06-27T17:14:48Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 3959, - "RentalDate": "2005-07-06T22:07:58Z", - "InventoryID": 40, - "CustomerID": 448, - "ReturnDate": "2005-07-13T02:30:58Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 8434, - "RentalDate": "2005-07-29T07:20:14Z", - "InventoryID": 40, - "CustomerID": 141, - "ReturnDate": "2005-07-30T08:50:14Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 11799, - "RentalDate": "2005-08-17T11:25:25Z", - "InventoryID": 40, - "CustomerID": 501, - "ReturnDate": "2005-08-25T13:03:25Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 9, - "Title": "ALABAMA DEVIL", - "Description": "A Thoughtful Panorama of a Database Administrator And a Mad Scientist who must Outgun a Mad Scientist in A Jet Boat", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 3, - "RentalRate": 2.99, - "Length": 114, - "ReplacementCost": 21.99, - "Rating": "PG-13", - "SpecialFeatures": "Trailers,Deleted Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 10, - "FirstName": "CHRISTIAN", - "LastName": "GABLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 22, - "FirstName": "ELVIS", - "LastName": "MARX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 68, - "FirstName": "RIP", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 108, - "FirstName": "WARREN", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 130, - "FirstName": "GRETA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 175, - "FirstName": "WILLIAM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 41, - "FilmID": 9, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 5745, - "RentalDate": "2005-07-10T12:10:11Z", - "InventoryID": 41, - "CustomerID": 305, - "ReturnDate": "2005-07-19T06:56:11Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10036, - "RentalDate": "2005-07-31T18:47:20Z", - "InventoryID": 41, - "CustomerID": 491, - "ReturnDate": "2005-08-03T22:53:20Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15802, - "RentalDate": "2005-08-23T14:26:51Z", - "InventoryID": 41, - "CustomerID": 158, - "ReturnDate": "2005-08-29T16:28:51Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 42, - "FilmID": 9, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 3880, - "RentalDate": "2005-07-06T18:32:49Z", - "InventoryID": 42, - "CustomerID": 507, - "ReturnDate": "2005-07-07T20:46:49Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 8837, - "RentalDate": "2005-07-29T22:49:00Z", - "InventoryID": 42, - "CustomerID": 372, - "ReturnDate": "2005-08-07T21:56:00Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15639, - "RentalDate": "2005-08-23T08:03:25Z", - "InventoryID": 42, - "CustomerID": 214, - "ReturnDate": "2005-08-24T10:21:25Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 43, - "FilmID": 9, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 7835, - "RentalDate": "2005-07-28T08:49:39Z", - "InventoryID": 43, - "CustomerID": 547, - "ReturnDate": "2005-08-02T07:16:39Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 15776, - "RentalDate": "2005-08-23T13:26:01Z", - "InventoryID": 43, - "CustomerID": 514, - "ReturnDate": "2005-08-29T18:17:01Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 44, - "FilmID": 9, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 9442, - "RentalDate": "2005-07-30T21:44:31Z", - "InventoryID": 44, - "CustomerID": 75, - "ReturnDate": "2005-08-04T01:29:31Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12096, - "RentalDate": "2005-08-17T22:32:50Z", - "InventoryID": 44, - "CustomerID": 463, - "ReturnDate": "2005-08-25T03:33:50Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 45, - "FilmID": 9, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 7288, - "RentalDate": "2005-07-27T12:24:59Z", - "InventoryID": 45, - "CustomerID": 226, - "ReturnDate": "2005-08-02T15:52:59Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12027, - "RentalDate": "2005-08-17T20:01:12Z", - "InventoryID": 45, - "CustomerID": 285, - "ReturnDate": "2005-08-26T21:08:12Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - }, - { - "FilmID": 10, - "Title": "ALADDIN CALENDAR", - "Description": "A Action-Packed Tale of a Man And a Lumberjack who must Reach a Feminist in Ancient China", - "ReleaseYear": 2006, - "LanguageID": 1, - "OriginalLanguageID": null, - "RentalDuration": 6, - "RentalRate": 4.99, - "Length": 63, - "ReplacementCost": 24.99, - "Rating": "NC-17", - "SpecialFeatures": "Trailers,Deleted Scenes", - "LastUpdate": "2006-02-15T05:03:42Z", - "Actors": [ - { - "ActorID": 29, - "FirstName": "ALEC", - "LastName": "WAYNE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 35, - "FirstName": "JUDY", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 37, - "FirstName": "VAL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 64, - "FirstName": "RAY", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ], - "Inventories": [ - { - "InventoryID": 46, - "FilmID": 10, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 1948, - "RentalDate": "2005-06-17T08:06:53Z", - "InventoryID": 46, - "CustomerID": 89, - "ReturnDate": "2005-06-21T05:00:53Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 6703, - "RentalDate": "2005-07-12T12:50:19Z", - "InventoryID": 46, - "CustomerID": 470, - "ReturnDate": "2005-07-16T13:41:19Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 7174, - "RentalDate": "2005-07-27T08:00:36Z", - "InventoryID": 46, - "CustomerID": 570, - "ReturnDate": "2005-08-01T03:11:36Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 13109, - "RentalDate": "2005-08-19T11:23:20Z", - "InventoryID": 46, - "CustomerID": 259, - "ReturnDate": "2005-08-25T17:05:20Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 47, - "FilmID": 10, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 10696, - "RentalDate": "2005-08-01T18:18:13Z", - "InventoryID": 47, - "CustomerID": 120, - "ReturnDate": "2005-08-04T14:09:13Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 13345, - "RentalDate": "2005-08-19T20:25:24Z", - "InventoryID": 47, - "CustomerID": 55, - "ReturnDate": "2005-08-27T20:38:24Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 48, - "FilmID": 10, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 10482, - "RentalDate": "2005-08-01T10:17:47Z", - "InventoryID": 48, - "CustomerID": 358, - "ReturnDate": "2005-08-02T15:04:47Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14697, - "RentalDate": "2005-08-21T20:49:21Z", - "InventoryID": 48, - "CustomerID": 409, - "ReturnDate": "2005-08-26T01:39:21Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 49, - "FilmID": 10, - "StoreID": 1, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 4400, - "RentalDate": "2005-07-07T21:22:26Z", - "InventoryID": 49, - "CustomerID": 370, - "ReturnDate": "2005-07-16T00:59:26Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10210, - "RentalDate": "2005-08-01T00:58:52Z", - "InventoryID": 49, - "CustomerID": 391, - "ReturnDate": "2005-08-10T01:16:52Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 13878, - "RentalDate": "2005-08-20T15:17:38Z", - "InventoryID": 49, - "CustomerID": 481, - "ReturnDate": "2005-08-21T21:11:38Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 50, - "FilmID": 10, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 1783, - "RentalDate": "2005-06-16T19:23:23Z", - "InventoryID": 50, - "CustomerID": 18, - "ReturnDate": "2005-06-18T00:57:23Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 4042, - "RentalDate": "2005-07-07T03:06:40Z", - "InventoryID": 50, - "CustomerID": 10, - "ReturnDate": "2005-07-10T02:37:40Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 10786, - "RentalDate": "2005-08-01T21:29:34Z", - "InventoryID": 50, - "CustomerID": 490, - "ReturnDate": "2005-08-10T17:27:34Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14413, - "RentalDate": "2005-08-21T11:06:33Z", - "InventoryID": 50, - "CustomerID": 367, - "ReturnDate": "2005-08-29T16:10:33Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 51, - "FilmID": 10, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 2562, - "RentalDate": "2005-06-19T03:15:05Z", - "InventoryID": 51, - "CustomerID": 265, - "ReturnDate": "2005-06-21T08:26:05Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 5139, - "RentalDate": "2005-07-09T08:01:51Z", - "InventoryID": 51, - "CustomerID": 539, - "ReturnDate": "2005-07-18T09:16:51Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 9184, - "RentalDate": "2005-07-30T12:10:19Z", - "InventoryID": 51, - "CustomerID": 365, - "ReturnDate": "2005-08-01T07:35:19Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 12704, - "RentalDate": "2005-08-18T20:43:00Z", - "InventoryID": 51, - "CustomerID": 93, - "ReturnDate": "2005-08-21T22:28:00Z", - "StaffID": 2, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - }, - { - "InventoryID": 52, - "FilmID": 10, - "StoreID": 2, - "LastUpdate": "2006-02-15T05:09:17Z", - "Rentals": [ - { - "RentalID": 1325, - "RentalDate": "2005-06-15T11:03:24Z", - "InventoryID": 52, - "CustomerID": 193, - "ReturnDate": "2005-06-20T10:54:24Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 4707, - "RentalDate": "2005-07-08T11:57:28Z", - "InventoryID": 52, - "CustomerID": 286, - "ReturnDate": "2005-07-10T17:47:28Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 8821, - "RentalDate": "2005-07-29T22:18:12Z", - "InventoryID": 52, - "CustomerID": 477, - "ReturnDate": "2005-08-05T22:00:12Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - }, - { - "RentalID": 14041, - "RentalDate": "2005-08-20T21:45:23Z", - "InventoryID": 52, - "CustomerID": 247, - "ReturnDate": "2005-08-26T01:42:23Z", - "StaffID": 1, - "LastUpdate": "2006-02-15T21:30:53Z" - } - ] - } - ] - } - ] - } -] \ No newline at end of file diff --git a/tests/mysql/testdata/r_rating_films.json b/tests/mysql/testdata/r_rating_films.json deleted file mode 100644 index afe76ad..0000000 --- a/tests/mysql/testdata/r_rating_films.json +++ /dev/null @@ -1,9469 +0,0 @@ -[ - { - "FilmID": 8, - "Title": "AIRPORT POLLOCK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 55, - "FirstName": "FAY", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 96, - "FirstName": "GENE", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 110, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 138, - "FirstName": "LUCILLE", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 17, - "Title": "ALONE TRIP", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 3, - "FirstName": "ED", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 160, - "FirstName": "CHRIS", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 167, - "FirstName": "LAURENCE", - "LastName": "BULLOCK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 20, - "Title": "AMELIE HELLFIGHTERS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 52, - "FirstName": "CARMEN", - "LastName": "HUNT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 102, - "FirstName": "WALTER", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 139, - "FirstName": "EWAN", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 155, - "FirstName": "IAN", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 159, - "FirstName": "LAURA", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 21, - "Title": "AMERICAN CIRCUS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 25, - "FirstName": "KEVIN", - "LastName": "BLOOM", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 126, - "FirstName": "FRANCES", - "LastName": "TOMEI", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 23, - "Title": "ANACONDA CONFESSIONS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 1, - "FirstName": "PENELOPE", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 4, - "FirstName": "JENNIFER", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 22, - "FirstName": "ELVIS", - "LastName": "MARX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 150, - "FirstName": "JAYNE", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 164, - "FirstName": "HUMPHREY", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 24, - "Title": "ANALYZE HOOSIERS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 38, - "FirstName": "TOM", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 42, - "FirstName": "TOM", - "LastName": "MIRANDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 67, - "FirstName": "JESSICA", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 179, - "FirstName": "ED", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 30, - "Title": "ANYTHING SAVANNAH", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 9, - "FirstName": "JOE", - "LastName": "SWANK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 163, - "FirstName": "CHRISTOPHER", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 178, - "FirstName": "LISA", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 32, - "Title": "APOCALYPSE FLAMINGOS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 158, - "FirstName": "VIVIEN", - "LastName": "BASINGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 162, - "FirstName": "OPRAH", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 168, - "FirstName": "WILL", - "LastName": "WILSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 183, - "FirstName": "RUSSELL", - "LastName": "CLOSE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 40, - "Title": "ARMY FLINTSTONES", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 3, - "FirstName": "ED", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 77, - "FirstName": "CARY", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 96, - "FirstName": "GENE", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 181, - "FirstName": "MATTHEW", - "LastName": "CARREY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 183, - "FirstName": "RUSSELL", - "LastName": "CLOSE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 49, - "Title": "BADMAN DAWN", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 83, - "FirstName": "BEN", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 115, - "FirstName": "HARRISON", - "LastName": "BALE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 118, - "FirstName": "CUBA", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 130, - "FirstName": "GRETA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 173, - "FirstName": "ALAN", - "LastName": "DREYFUSS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 200, - "FirstName": "THORA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 54, - "Title": "BANGER PINOCCHIO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 5, - "FirstName": "JOHNNY", - "LastName": "LOLLOBRIGIDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 59, - "FirstName": "DUSTIN", - "LastName": "TAUTOU", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 96, - "FirstName": "GENE", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 190, - "FirstName": "AUDREY", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 59, - "Title": "BEAR GRACELAND", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 81, - "FirstName": "SCARLETT", - "LastName": "DAMON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 152, - "FirstName": "BEN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 60, - "Title": "BEAST HUNCHBACK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 6, - "FirstName": "BETTE", - "LastName": "NICHOLSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 76, - "FirstName": "ANGELINA", - "LastName": "ASTAIRE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 94, - "FirstName": "KENNETH", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 101, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 69, - "Title": "BEVERLY OUTLAW", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 30, - "FirstName": "SANDRA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 80, - "FirstName": "RALPH", - "LastName": "CRUZ", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 86, - "Title": "BOOGIE AMELIE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 25, - "FirstName": "KEVIN", - "LastName": "BLOOM", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 78, - "FirstName": "GROUCHO", - "LastName": "SINATRA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 166, - "FirstName": "NICK", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 177, - "FirstName": "GENE", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 90, - "Title": "BOULEVARD MOB", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 34, - "FirstName": "AUDREY", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 116, - "FirstName": "DAN", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 139, - "FirstName": "EWAN", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 144, - "FirstName": "ANGELA", - "LastName": "WITHERSPOON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 161, - "FirstName": "HARVEY", - "LastName": "HOPE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 100, - "Title": "BROOKLYN DESERT", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 125, - "FirstName": "ALBERT", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 172, - "FirstName": "GROUCHO", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 101, - "Title": "BROTHERHOOD BLANKET", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 48, - "FirstName": "FRANCES", - "LastName": "DAY-LEWIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 57, - "FirstName": "JUDE", - "LastName": "CRUISE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 129, - "FirstName": "DARYL", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 102, - "Title": "BUBBLE GROSSE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 158, - "FirstName": "VIVIEN", - "LastName": "BASINGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 170, - "FirstName": "MENA", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 188, - "FirstName": "ROCK", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 115, - "Title": "CAMPUS REMEMBER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 8, - "FirstName": "MATTHEW", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 168, - "FirstName": "WILL", - "LastName": "WILSON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 116, - "Title": "CANDIDATE PERDITION", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 113, - "FirstName": "MORGAN", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 200, - "FirstName": "THORA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 118, - "Title": "CANYON STOCK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 11, - "FirstName": "ZERO", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 37, - "FirstName": "VAL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 80, - "FirstName": "RALPH", - "LastName": "CRUZ", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 149, - "FirstName": "RUSSELL", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 129, - "Title": "CAUSE DATE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 54, - "FirstName": "PENELOPE", - "LastName": "PINKETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 59, - "FirstName": "DUSTIN", - "LastName": "TAUTOU", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 175, - "FirstName": "WILLIAM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 195, - "FirstName": "JAYNE", - "LastName": "SILVERSTONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 135, - "Title": "CHANCE RESURRECTION", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 33, - "FirstName": "MILLA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 58, - "FirstName": "CHRISTIAN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 83, - "FirstName": "BEN", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 144, - "FirstName": "ANGELA", - "LastName": "WITHERSPOON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 138, - "Title": "CHARIOTS CONSPIRACY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 107, - "FirstName": "GINA", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 185, - "FirstName": "MICHAEL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 148, - "Title": "CHOCOLATE DUCK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 9, - "FirstName": "JOE", - "LastName": "SWANK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 24, - "FirstName": "CAMERON", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 73, - "FirstName": "GARY", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 85, - "FirstName": "MINNIE", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 164, - "FirstName": "HUMPHREY", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 172, - "FirstName": "GROUCHO", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 158, - "Title": "CLONES PINOCCHIO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 8, - "FirstName": "MATTHEW", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 65, - "FirstName": "ANGELA", - "LastName": "HUDSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 122, - "FirstName": "SALMA", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 154, - "FirstName": "MERYL", - "LastName": "GIBSON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 159, - "Title": "CLOSER BANG", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 21, - "FirstName": "KIRSTEN", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 149, - "FirstName": "RUSSELL", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 179, - "FirstName": "ED", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 199, - "FirstName": "JULIA", - "LastName": "FAWCETT", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 162, - "Title": "CLUELESS BUCKET", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 89, - "FirstName": "CHARLIZE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 107, - "FirstName": "GINA", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 111, - "FirstName": "CAMERON", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 132, - "FirstName": "ADAM", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 173, - "FirstName": "ALAN", - "LastName": "DREYFUSS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 176, - "FirstName": "JON", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 168, - "Title": "COMANCHEROS ENEMY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 39, - "FirstName": "GOLDIE", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 128, - "FirstName": "CATE", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 150, - "FirstName": "JAYNE", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 174, - "FirstName": "MICHAEL", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 171, - "Title": "COMMANDMENTS EXPRESS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 5, - "FirstName": "JOHNNY", - "LastName": "LOLLOBRIGIDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 189, - "FirstName": "CUBA", - "LastName": "BIRCH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 177, - "Title": "CONNECTICUT TRAMP", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 40, - "FirstName": "JOHNNY", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 60, - "FirstName": "HENRY", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 158, - "FirstName": "VIVIEN", - "LastName": "BASINGER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 183, - "Title": "CONVERSATION DOWNHILL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 59, - "FirstName": "DUSTIN", - "LastName": "TAUTOU", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 98, - "FirstName": "CHRIS", - "LastName": "BRIDGES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 192, - "Title": "CROSSING DIVORCE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 57, - "FirstName": "JUDE", - "LastName": "CRUISE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 74, - "FirstName": "MILLA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 195, - "Title": "CROWDS TELEMARK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 8, - "FirstName": "MATTHEW", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 49, - "FirstName": "ANNE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 180, - "FirstName": "JEFF", - "LastName": "SILVERSTONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 181, - "FirstName": "MATTHEW", - "LastName": "CARREY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 197, - "Title": "CRUSADE HONEY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 32, - "FirstName": "TIM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 55, - "FirstName": "FAY", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 64, - "FirstName": "RAY", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 178, - "FirstName": "LISA", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 199, - "Title": "CUPBOARD SINNERS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 17, - "FirstName": "HELEN", - "LastName": "VOIGHT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 24, - "FirstName": "CAMERON", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 32, - "FirstName": "TIM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 58, - "FirstName": "CHRISTIAN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 87, - "FirstName": "SPENCER", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 126, - "FirstName": "FRANCES", - "LastName": "TOMEI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 142, - "FirstName": "JADA", - "LastName": "RYDER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 213, - "Title": "DATE SPEED", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 25, - "FirstName": "KEVIN", - "LastName": "BLOOM", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 57, - "FirstName": "JUDE", - "LastName": "CRUISE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 68, - "FirstName": "RIP", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 221, - "Title": "DELIVERANCE MULHOLLAND", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 184, - "FirstName": "HUMPHREY", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 222, - "Title": "DESERT POSEIDON", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 39, - "FirstName": "GOLDIE", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 60, - "FirstName": "HENRY", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 75, - "FirstName": "BURT", - "LastName": "POSEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 121, - "FirstName": "LIZA", - "LastName": "BERGMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 227, - "Title": "DETAILS PACKER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 70, - "FirstName": "MICHELLE", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 122, - "FirstName": "SALMA", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 229, - "Title": "DEVIL DESIRE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 66, - "FirstName": "MARY", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 106, - "FirstName": "GROUCHO", - "LastName": "DUNST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 139, - "FirstName": "EWAN", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 231, - "Title": "DINOSAUR SECRETARY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 112, - "FirstName": "RUSSELL", - "LastName": "BACALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 120, - "FirstName": "PENELOPE", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 153, - "FirstName": "MINNIE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 234, - "Title": "DISTURBING SCARFACE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 76, - "FirstName": "ANGELINA", - "LastName": "ASTAIRE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 88, - "FirstName": "KENNETH", - "LastName": "PESCI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 190, - "FirstName": "AUDREY", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 236, - "Title": "DIVINE RESURRECTION", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 10, - "FirstName": "CHRISTIAN", - "LastName": "GABLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 15, - "FirstName": "CUBA", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 17, - "FirstName": "HELEN", - "LastName": "VOIGHT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 56, - "FirstName": "DAN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 69, - "FirstName": "KENNETH", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 242, - "Title": "DOOM DANCING", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 24, - "FirstName": "CAMERON", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 44, - "FirstName": "NICK", - "LastName": "STALLONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 58, - "FirstName": "CHRISTIAN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 67, - "FirstName": "JESSICA", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 108, - "FirstName": "WARREN", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 160, - "FirstName": "CHRIS", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 245, - "Title": "DOUBLE WRATH", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 25, - "FirstName": "KEVIN", - "LastName": "BLOOM", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 48, - "FirstName": "FRANCES", - "LastName": "DAY-LEWIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 73, - "FirstName": "GARY", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 77, - "FirstName": "CARY", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 115, - "FirstName": "HARRISON", - "LastName": "BALE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 246, - "Title": "DOUBTFIRE LABYRINTH", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 115, - "FirstName": "HARRISON", - "LastName": "BALE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 124, - "FirstName": "SCARLETT", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 169, - "FirstName": "KENNETH", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 256, - "Title": "DROP WATERFRONT", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 6, - "FirstName": "BETTE", - "LastName": "NICHOLSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 24, - "FirstName": "CAMERON", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 35, - "FirstName": "JUDY", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 67, - "FirstName": "JESSICA", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 126, - "FirstName": "FRANCES", - "LastName": "TOMEI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 263, - "Title": "DURHAM PANKY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 8, - "FirstName": "MATTHEW", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 28, - "FirstName": "WOODY", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 74, - "FirstName": "MILLA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 83, - "FirstName": "BEN", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 101, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 124, - "FirstName": "SCARLETT", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 126, - "FirstName": "FRANCES", - "LastName": "TOMEI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 137, - "FirstName": "MORGAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 156, - "FirstName": "FAY", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 269, - "Title": "EARRING INSTINCT", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 135, - "FirstName": "RITA", - "LastName": "REYNOLDS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 161, - "FirstName": "HARVEY", - "LastName": "HOPE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 287, - "Title": "ENTRAPMENT SATISFACTION", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 28, - "FirstName": "WOODY", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 48, - "FirstName": "FRANCES", - "LastName": "DAY-LEWIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 288, - "Title": "ESCAPE METROPOLIS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 5, - "FirstName": "JOHNNY", - "LastName": "LOLLOBRIGIDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 50, - "FirstName": "NATALIE", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 126, - "FirstName": "FRANCES", - "LastName": "TOMEI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 296, - "Title": "EXPRESS LONELY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 29, - "FirstName": "ALEC", - "LastName": "WAYNE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 46, - "FirstName": "PARKER", - "LastName": "GOLDBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 68, - "FirstName": "RIP", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 72, - "FirstName": "SEAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 85, - "FirstName": "MINNIE", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 191, - "FirstName": "GREGORY", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 301, - "Title": "FAMILY SWEET", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 30, - "FirstName": "SANDRA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 54, - "FirstName": "PENELOPE", - "LastName": "PINKETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 75, - "FirstName": "BURT", - "LastName": "POSEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 78, - "FirstName": "GROUCHO", - "LastName": "SINATRA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 156, - "FirstName": "FAY", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 169, - "FirstName": "KENNETH", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 181, - "FirstName": "MATTHEW", - "LastName": "CARREY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 182, - "FirstName": "DEBBIE", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 309, - "Title": "FEUD FROGMEN", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 32, - "FirstName": "TIM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 42, - "FirstName": "TOM", - "LastName": "MIRANDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 310, - "Title": "FEVER EMPIRE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 17, - "FirstName": "HELEN", - "LastName": "VOIGHT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 147, - "FirstName": "FAY", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 190, - "FirstName": "AUDREY", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 312, - "Title": "FIDDLER LOST", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 32, - "FirstName": "TIM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 48, - "FirstName": "FRANCES", - "LastName": "DAY-LEWIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 84, - "FirstName": "JAMES", - "LastName": "PITT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 87, - "FirstName": "SPENCER", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 112, - "FirstName": "RUSSELL", - "LastName": "BACALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 124, - "FirstName": "SCARLETT", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 128, - "FirstName": "CATE", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 144, - "FirstName": "ANGELA", - "LastName": "WITHERSPOON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 155, - "FirstName": "IAN", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 314, - "Title": "FIGHT JAWBREAKER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 2, - "FirstName": "NICK", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 154, - "FirstName": "MERYL", - "LastName": "GIBSON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 315, - "Title": "FINDING ANACONDA", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 48, - "FirstName": "FRANCES", - "LastName": "DAY-LEWIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 68, - "FirstName": "RIP", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 189, - "FirstName": "CUBA", - "LastName": "BIRCH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 316, - "Title": "FIRE WOLVES", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 5, - "FirstName": "JOHNNY", - "LastName": "LOLLOBRIGIDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 58, - "FirstName": "CHRISTIAN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 143, - "FirstName": "RIVER", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 319, - "Title": "FISH OPUS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 46, - "FirstName": "PARKER", - "LastName": "GOLDBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 167, - "FirstName": "LAURENCE", - "LastName": "BULLOCK", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 329, - "Title": "FORREST SONS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 3, - "FirstName": "ED", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 102, - "FirstName": "WALTER", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 333, - "Title": "FREAKY POCUS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 42, - "FirstName": "TOM", - "LastName": "MIRANDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 127, - "FirstName": "KEVIN", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 147, - "FirstName": "FAY", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 337, - "Title": "FRIDA SLIPPER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 85, - "FirstName": "MINNIE", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 94, - "FirstName": "KENNETH", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 339, - "Title": "FROGMEN BREAKING", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 83, - "FirstName": "BEN", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 93, - "FirstName": "ELLEN", - "LastName": "PRESLEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 143, - "FirstName": "RIVER", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 149, - "FirstName": "RUSSELL", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 167, - "FirstName": "LAURENCE", - "LastName": "BULLOCK", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 342, - "Title": "FUGITIVE MAGUIRE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 15, - "FirstName": "CUBA", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 29, - "FirstName": "ALEC", - "LastName": "WAYNE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 66, - "FirstName": "MARY", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 80, - "FirstName": "RALPH", - "LastName": "CRUZ", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 89, - "FirstName": "CHARLIZE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 133, - "FirstName": "RICHARD", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 148, - "FirstName": "EMILY", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 159, - "FirstName": "LAURA", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 346, - "Title": "GALAXY SWEETHEARTS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 182, - "FirstName": "DEBBIE", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 200, - "FirstName": "THORA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 355, - "Title": "GHOSTBUSTERS ELF", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 4, - "FirstName": "JENNIFER", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 356, - "Title": "GIANT TROOPERS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 358, - "Title": "GILMORE BOILED", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 28, - "FirstName": "WOODY", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 141, - "FirstName": "CATE", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 170, - "FirstName": "MENA", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 193, - "FirstName": "BURT", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 363, - "Title": "GO PURPLE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 122, - "FirstName": "SALMA", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 177, - "FirstName": "GENE", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 365, - "Title": "GOLD RIVER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 106, - "FirstName": "GROUCHO", - "LastName": "DUNST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 149, - "FirstName": "RUSSELL", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 367, - "Title": "GOLDMINE TYCOON", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 125, - "FirstName": "ALBERT", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 129, - "FirstName": "DARYL", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 164, - "FirstName": "HUMPHREY", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 368, - "Title": "GONE TROUBLE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 31, - "FirstName": "SISSY", - "LastName": "SOBIESKI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 133, - "FirstName": "RICHARD", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 148, - "FirstName": "EMILY", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 160, - "FirstName": "CHRIS", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 172, - "FirstName": "GROUCHO", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 370, - "Title": "GORGEOUS BINGO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 14, - "FirstName": "VIVIEN", - "LastName": "BERGEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 126, - "FirstName": "FRANCES", - "LastName": "TOMEI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 372, - "Title": "GRACELAND DYNAMITE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 50, - "FirstName": "NATALIE", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 61, - "FirstName": "CHRISTIAN", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 75, - "FirstName": "BURT", - "LastName": "POSEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 169, - "FirstName": "KENNETH", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 379, - "Title": "GREEDY ROOTS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 4, - "FirstName": "JENNIFER", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 73, - "FirstName": "GARY", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 108, - "FirstName": "WARREN", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 115, - "FirstName": "HARRISON", - "LastName": "BALE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 156, - "FirstName": "FAY", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 173, - "FirstName": "ALAN", - "LastName": "DREYFUSS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 381, - "Title": "GRINCH MASSAGE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 99, - "FirstName": "JIM", - "LastName": "MOSTEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 181, - "FirstName": "MATTHEW", - "LastName": "CARREY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 384, - "Title": "GROSSE WONDERFUL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 116, - "FirstName": "DAN", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 118, - "FirstName": "CUBA", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 390, - "Title": "GUYS FALCON", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 133, - "FirstName": "RICHARD", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 137, - "FirstName": "MORGAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 183, - "FirstName": "RUSSELL", - "LastName": "CLOSE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 394, - "Title": "HAMLET WISDOM", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 40, - "FirstName": "JOHNNY", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 147, - "FirstName": "FAY", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 163, - "FirstName": "CHRISTOPHER", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 395, - "Title": "HANDICAP BOONDOCK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 11, - "FirstName": "ZERO", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 125, - "FirstName": "ALBERT", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 141, - "FirstName": "CATE", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 165, - "FirstName": "AL", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 400, - "Title": "HARDLY ROBBERS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 49, - "FirstName": "ANNE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 406, - "Title": "HAUNTING PIANIST", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 89, - "FirstName": "CHARLIZE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 408, - "Title": "HEAD STRANGER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 67, - "FirstName": "JESSICA", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 415, - "Title": "HIGH ENCINO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 14, - "FirstName": "VIVIEN", - "LastName": "BERGEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 27, - "FirstName": "JULIA", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 39, - "FirstName": "GOLDIE", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 74, - "FirstName": "MILLA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 162, - "FirstName": "OPRAH", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 179, - "FirstName": "ED", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 416, - "Title": "HIGHBALL POTTER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 91, - "FirstName": "CHRISTOPHER", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 130, - "FirstName": "GRETA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 170, - "FirstName": "MENA", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 424, - "Title": "HOLOCAUST HIGHBALL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 52, - "FirstName": "CARMEN", - "LastName": "HUNT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 66, - "FirstName": "MARY", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 120, - "FirstName": "PENELOPE", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 175, - "FirstName": "WILLIAM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 425, - "Title": "HOLY TADPOLE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 39, - "FirstName": "GOLDIE", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 161, - "FirstName": "HARVEY", - "LastName": "HOPE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 426, - "Title": "HOME PITY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 21, - "FirstName": "KIRSTEN", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 58, - "FirstName": "CHRISTIAN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 166, - "FirstName": "NICK", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 190, - "FirstName": "AUDREY", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 427, - "Title": "HOMEWARD CIDER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 32, - "FirstName": "TIM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 93, - "FirstName": "ELLEN", - "LastName": "PRESLEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 155, - "FirstName": "IAN", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 185, - "FirstName": "MICHAEL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 429, - "Title": "HONEY TIES", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 11, - "FirstName": "ZERO", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 21, - "FirstName": "KIRSTEN", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 125, - "FirstName": "ALBERT", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 434, - "Title": "HORROR REIGN", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 9, - "FirstName": "JOE", - "LastName": "SWANK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 44, - "FirstName": "NICK", - "LastName": "STALLONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 66, - "FirstName": "MARY", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 163, - "FirstName": "CHRISTOPHER", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 169, - "FirstName": "KENNETH", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 437, - "Title": "HOUSE DYNAMITE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 50, - "FirstName": "NATALIE", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 57, - "FirstName": "JUDE", - "LastName": "CRUISE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 158, - "FirstName": "VIVIEN", - "LastName": "BASINGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 165, - "FirstName": "AL", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 181, - "FirstName": "MATTHEW", - "LastName": "CARREY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 182, - "FirstName": "DEBBIE", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 185, - "FirstName": "MICHAEL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 447, - "Title": "ICE CROSSING", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 57, - "FirstName": "JUDE", - "LastName": "CRUISE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 91, - "FirstName": "CHRISTOPHER", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 139, - "FirstName": "EWAN", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 150, - "FirstName": "JAYNE", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 452, - "Title": "ILLUSION AMELIE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 69, - "FirstName": "KENNETH", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 96, - "FirstName": "GENE", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 129, - "FirstName": "DARYL", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 130, - "FirstName": "GRETA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 133, - "FirstName": "RICHARD", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 184, - "FirstName": "HUMPHREY", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 465, - "Title": "INTERVIEW LIAISONS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 81, - "FirstName": "SCARLETT", - "LastName": "DAMON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 200, - "FirstName": "THORA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 470, - "Title": "ISHTAR ROCKETEER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 122, - "FirstName": "SALMA", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 142, - "FirstName": "JADA", - "LastName": "RYDER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 480, - "Title": "JEEPERS WEDDING", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 3, - "FirstName": "ED", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 10, - "FirstName": "CHRISTIAN", - "LastName": "GABLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 91, - "FirstName": "CHRISTOPHER", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 153, - "FirstName": "MINNIE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 482, - "Title": "JEOPARDY ENCINO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 29, - "FirstName": "ALEC", - "LastName": "WAYNE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 86, - "FirstName": "GREG", - "LastName": "CHAPLIN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 186, - "FirstName": "JULIA", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 486, - "Title": "JET NEIGHBORS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 55, - "FirstName": "FAY", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 86, - "FirstName": "GREG", - "LastName": "CHAPLIN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 96, - "FirstName": "GENE", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 153, - "FirstName": "MINNIE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 184, - "FirstName": "HUMPHREY", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 493, - "Title": "KANE EXORCIST", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 34, - "FirstName": "AUDREY", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 36, - "FirstName": "BURT", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 60, - "FirstName": "HENRY", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 91, - "FirstName": "CHRISTOPHER", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 172, - "FirstName": "GROUCHO", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 498, - "Title": "KILLER INNOCENT", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 75, - "FirstName": "BURT", - "LastName": "POSEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 76, - "FirstName": "ANGELINA", - "LastName": "ASTAIRE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 501, - "Title": "KISSING DOLLS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 38, - "FirstName": "TOM", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 142, - "FirstName": "JADA", - "LastName": "RYDER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 503, - "Title": "KRAMER CHOCOLATE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 5, - "FirstName": "JOHNNY", - "LastName": "LOLLOBRIGIDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 6, - "FirstName": "BETTE", - "LastName": "NICHOLSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 27, - "FirstName": "JULIA", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 74, - "FirstName": "MILLA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 523, - "Title": "LIGHTS DEER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 8, - "FirstName": "MATTHEW", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 32, - "FirstName": "TIM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 525, - "Title": "LOATHING LEGALLY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 34, - "FirstName": "AUDREY", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 110, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 113, - "FirstName": "MORGAN", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 130, - "FirstName": "GRETA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 526, - "Title": "LOCK REAR", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 102, - "FirstName": "WALTER", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 161, - "FirstName": "HARVEY", - "LastName": "HOPE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 531, - "Title": "LOSE INCH", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 115, - "FirstName": "HARRISON", - "LastName": "BALE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 535, - "Title": "LOVE SUICIDES", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 5, - "FirstName": "JOHNNY", - "LastName": "LOLLOBRIGIDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 42, - "FirstName": "TOM", - "LastName": "MIRANDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 61, - "FirstName": "CHRISTIAN", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 543, - "Title": "MADIGAN DORADO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 64, - "FirstName": "RAY", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 74, - "FirstName": "MILLA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 85, - "FirstName": "MINNIE", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 176, - "FirstName": "JON", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 177, - "FirstName": "GENE", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 544, - "Title": "MADISON TRAP", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 102, - "FirstName": "WALTER", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 191, - "FirstName": "GREGORY", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 200, - "FirstName": "THORA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 548, - "Title": "MAGNIFICENT CHITTY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 73, - "FirstName": "GARY", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 86, - "FirstName": "GREG", - "LastName": "CHAPLIN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 94, - "FirstName": "KENNETH", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 107, - "FirstName": "GINA", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 189, - "FirstName": "CUBA", - "LastName": "BIRCH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 563, - "Title": "MASSACRE USUAL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 147, - "FirstName": "FAY", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 177, - "FirstName": "GENE", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 566, - "Title": "MAUDE MOD", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 77, - "FirstName": "CARY", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 84, - "FirstName": "JAMES", - "LastName": "PITT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 106, - "FirstName": "GROUCHO", - "LastName": "DUNST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 179, - "FirstName": "ED", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 188, - "FirstName": "ROCK", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 599, - "Title": "MOTHER OLEANDER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 48, - "FirstName": "FRANCES", - "LastName": "DAY-LEWIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 78, - "FirstName": "GROUCHO", - "LastName": "SINATRA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 87, - "FirstName": "SPENCER", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 144, - "FirstName": "ANGELA", - "LastName": "WITHERSPOON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 610, - "Title": "MUSIC BOONDOCK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 137, - "FirstName": "MORGAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 164, - "FirstName": "HUMPHREY", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 174, - "FirstName": "MICHAEL", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 619, - "Title": "NEIGHBORS CHARADE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 28, - "FirstName": "WOODY", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 38, - "FirstName": "TOM", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 80, - "FirstName": "RALPH", - "LastName": "CRUZ", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 81, - "FirstName": "SCARLETT", - "LastName": "DAMON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 168, - "FirstName": "WILL", - "LastName": "WILSON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 640, - "Title": "OPUS ICE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 72, - "FirstName": "SEAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 129, - "FirstName": "DARYL", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 184, - "FirstName": "HUMPHREY", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 199, - "FirstName": "JULIA", - "LastName": "FAWCETT", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 643, - "Title": "ORIENT CLOSER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 81, - "FirstName": "SCARLETT", - "LastName": "DAMON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 111, - "FirstName": "CAMERON", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 649, - "Title": "OZ LIAISONS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 54, - "FirstName": "PENELOPE", - "LastName": "PINKETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 61, - "FirstName": "CHRISTIAN", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 122, - "FirstName": "SALMA", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 147, - "FirstName": "FAY", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 172, - "FirstName": "GROUCHO", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 177, - "FirstName": "GENE", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 195, - "FirstName": "JAYNE", - "LastName": "SILVERSTONE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 652, - "Title": "PAJAMA JAWBREAKER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 28, - "FirstName": "WOODY", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 108, - "FirstName": "WARREN", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 133, - "FirstName": "RICHARD", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 168, - "FirstName": "WILL", - "LastName": "WILSON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 686, - "Title": "PLUTO OLEANDER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 21, - "FirstName": "KIRSTEN", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 83, - "FirstName": "BEN", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 98, - "FirstName": "CHRIS", - "LastName": "BRIDGES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 115, - "FirstName": "HARRISON", - "LastName": "BALE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 700, - "Title": "PRIX UNDEFEATED", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 21, - "FirstName": "KIRSTEN", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 31, - "FirstName": "SISSY", - "LastName": "SOBIESKI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 39, - "FirstName": "GOLDIE", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 101, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 109, - "FirstName": "SYLVESTER", - "LastName": "DERN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 112, - "FirstName": "RUSSELL", - "LastName": "BACALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 113, - "FirstName": "MORGAN", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 705, - "Title": "PURPLE MOVIE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 38, - "FirstName": "TOM", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 48, - "FirstName": "FRANCES", - "LastName": "DAY-LEWIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 98, - "FirstName": "CHRIS", - "LastName": "BRIDGES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 129, - "FirstName": "DARYL", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 156, - "FirstName": "FAY", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 170, - "FirstName": "MENA", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 174, - "FirstName": "MICHAEL", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 190, - "FirstName": "AUDREY", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 707, - "Title": "QUEST MUSSOLINI", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 35, - "FirstName": "JUDY", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 57, - "FirstName": "JUDE", - "LastName": "CRUISE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 73, - "FirstName": "GARY", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 708, - "Title": "QUILLS BULL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 147, - "FirstName": "FAY", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 178, - "FirstName": "LISA", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 190, - "FirstName": "AUDREY", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 710, - "Title": "RAGE GAMES", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 81, - "FirstName": "SCARLETT", - "LastName": "DAMON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 98, - "FirstName": "CHRIS", - "LastName": "BRIDGES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 125, - "FirstName": "ALBERT", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 127, - "FirstName": "KEVIN", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 142, - "FirstName": "JADA", - "LastName": "RYDER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 172, - "FirstName": "GROUCHO", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 711, - "Title": "RAGING AIRPLANE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 19, - "FirstName": "BOB", - "LastName": "FAWCETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 85, - "FirstName": "MINNIE", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 724, - "Title": "REMEMBER DIARY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 94, - "FirstName": "KENNETH", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 180, - "FirstName": "JEFF", - "LastName": "SILVERSTONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 725, - "Title": "REQUIEM TYCOON", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 49, - "FirstName": "ANNE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 66, - "FirstName": "MARY", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 67, - "FirstName": "JESSICA", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 70, - "FirstName": "MICHELLE", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 98, - "FirstName": "CHRIS", - "LastName": "BRIDGES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 130, - "FirstName": "GRETA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 728, - "Title": "REUNION WITCHES", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 56, - "FirstName": "DAN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 102, - "FirstName": "WALTER", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 112, - "FirstName": "RUSSELL", - "LastName": "BACALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 150, - "FirstName": "JAYNE", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 734, - "Title": "ROAD ROXANNE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 17, - "FirstName": "HELEN", - "LastName": "VOIGHT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 21, - "FirstName": "KIRSTEN", - "LastName": "PALTROW", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 47, - "FirstName": "JULIA", - "LastName": "BARRYMORE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 98, - "FirstName": "CHRIS", - "LastName": "BRIDGES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 167, - "FirstName": "LAURENCE", - "LastName": "BULLOCK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 189, - "FirstName": "CUBA", - "LastName": "BIRCH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 736, - "Title": "ROBBERY BRIGHT", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 39, - "FirstName": "GOLDIE", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 742, - "Title": "ROOF CHAMPION", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 2, - "FirstName": "NICK", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 22, - "FirstName": "ELVIS", - "LastName": "MARX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 116, - "FirstName": "DAN", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 124, - "FirstName": "SCARLETT", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 747, - "Title": "ROXANNE REBEL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 40, - "FirstName": "JOHNNY", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 68, - "FirstName": "RIP", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 74, - "FirstName": "MILLA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 138, - "FirstName": "LUCILLE", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 192, - "FirstName": "JOHN", - "LastName": "SUVARI", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 749, - "Title": "RULES HUMAN", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 1, - "FirstName": "PENELOPE", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 59, - "FirstName": "DUSTIN", - "LastName": "TAUTOU", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 77, - "FirstName": "CARY", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 127, - "FirstName": "KEVIN", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 161, - "FirstName": "HARVEY", - "LastName": "HOPE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 750, - "Title": "RUN PACIFIC", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 19, - "FirstName": "BOB", - "LastName": "FAWCETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 56, - "FirstName": "DAN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 759, - "Title": "SALUTE APOLLO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 14, - "FirstName": "VIVIEN", - "LastName": "BERGEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 128, - "FirstName": "CATE", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 142, - "FirstName": "JADA", - "LastName": "RYDER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 765, - "Title": "SATURN NAME", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 76, - "FirstName": "ANGELINA", - "LastName": "ASTAIRE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 98, - "FirstName": "CHRIS", - "LastName": "BRIDGES", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 779, - "Title": "SENSE GREEK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 34, - "FirstName": "AUDREY", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 41, - "FirstName": "JODIE", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 165, - "FirstName": "AL", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 781, - "Title": "SEVEN SWARM", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 24, - "FirstName": "CAMERON", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 56, - "FirstName": "DAN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 63, - "FirstName": "CAMERON", - "LastName": "WRAY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 76, - "FirstName": "ANGELINA", - "LastName": "ASTAIRE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 107, - "FirstName": "GINA", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 195, - "FirstName": "JAYNE", - "LastName": "SILVERSTONE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 786, - "Title": "SHEPHERD MIDSUMMER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 109, - "FirstName": "SYLVESTER", - "LastName": "DERN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 162, - "FirstName": "OPRAH", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 788, - "Title": "SHIP WONDERLAND", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 34, - "FirstName": "AUDREY", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 80, - "FirstName": "RALPH", - "LastName": "CRUZ", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 94, - "FirstName": "KENNETH", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 118, - "FirstName": "CUBA", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 166, - "FirstName": "NICK", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 189, - "FirstName": "CUBA", - "LastName": "BIRCH", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 793, - "Title": "SHRUNK DIVINE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 28, - "FirstName": "WOODY", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 31, - "FirstName": "SISSY", - "LastName": "SOBIESKI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 38, - "FirstName": "TOM", - "LastName": "MCKELLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 66, - "FirstName": "MARY", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 795, - "Title": "SIEGE MADRE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 15, - "FirstName": "CUBA", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 50, - "FirstName": "NATALIE", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 56, - "FirstName": "DAN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 122, - "FirstName": "SALMA", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 196, - "FirstName": "BELA", - "LastName": "WALKEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 797, - "Title": "SILENCE KANE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 30, - "FirstName": "SANDRA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 117, - "FirstName": "RENEE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 174, - "FirstName": "MICHAEL", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 808, - "Title": "SLING LUKE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 18, - "FirstName": "DAN", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 86, - "FirstName": "GREG", - "LastName": "CHAPLIN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 136, - "FirstName": "ED", - "LastName": "MANSFIELD", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 813, - "Title": "SMOOCHY CONTROL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 195, - "FirstName": "JAYNE", - "LastName": "SILVERSTONE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 817, - "Title": "SOLDIERS EVOLUTION", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 5, - "FirstName": "JOHNNY", - "LastName": "LOLLOBRIGIDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 15, - "FirstName": "CUBA", - "LastName": "OLIVIER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 35, - "FirstName": "JUDY", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 112, - "FirstName": "RUSSELL", - "LastName": "BACALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 153, - "FirstName": "MINNIE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 179, - "FirstName": "ED", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 822, - "Title": "SOUP WISDOM", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 145, - "FirstName": "KIM", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 823, - "Title": "SOUTH WAIT", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 70, - "FirstName": "MICHELLE", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 73, - "FirstName": "GARY", - "LastName": "PENN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 830, - "Title": "SPIRIT FLINTSTONES", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 27, - "FirstName": "JULIA", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 46, - "FirstName": "PARKER", - "LastName": "GOLDBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 60, - "FirstName": "HENRY", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 84, - "FirstName": "JAMES", - "LastName": "PITT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 87, - "FirstName": "SPENCER", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 120, - "FirstName": "PENELOPE", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 143, - "FirstName": "RIVER", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 158, - "FirstName": "VIVIEN", - "LastName": "BASINGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 174, - "FirstName": "MICHAEL", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 191, - "FirstName": "GREGORY", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 833, - "Title": "SPLENDOR PATTON", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 13, - "FirstName": "UMA", - "LastName": "WOOD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 43, - "FirstName": "KIRK", - "LastName": "JOVOVICH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 71, - "FirstName": "ADAM", - "LastName": "GRANT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 83, - "FirstName": "BEN", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 89, - "FirstName": "CHARLIZE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 163, - "FirstName": "CHRISTOPHER", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 165, - "FirstName": "AL", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 172, - "FirstName": "GROUCHO", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 196, - "FirstName": "BELA", - "LastName": "WALKEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 838, - "Title": "STAGECOACH ARMAGEDDON", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 30, - "FirstName": "SANDRA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 113, - "FirstName": "MORGAN", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 840, - "Title": "STAMPEDE DISTURBING", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 37, - "FirstName": "VAL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 50, - "FirstName": "NATALIE", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 68, - "FirstName": "RIP", - "LastName": "WINSLET", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 79, - "FirstName": "MAE", - "LastName": "HOFFMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 141, - "FirstName": "CATE", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 158, - "FirstName": "VIVIEN", - "LastName": "BASINGER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 850, - "Title": "STORY SIDE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 11, - "FirstName": "ZERO", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 76, - "FirstName": "ANGELINA", - "LastName": "ASTAIRE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 161, - "FirstName": "HARVEY", - "LastName": "HOPE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 183, - "FirstName": "RUSSELL", - "LastName": "CLOSE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 851, - "Title": "STRAIGHT HOURS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 56, - "FirstName": "DAN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 164, - "FirstName": "HUMPHREY", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 193, - "FirstName": "BURT", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 854, - "Title": "STRANGERS GRAFFITI", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 11, - "FirstName": "ZERO", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 27, - "FirstName": "JULIA", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 44, - "FirstName": "NICK", - "LastName": "STALLONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 72, - "FirstName": "SEAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 150, - "FirstName": "JAYNE", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 856, - "Title": "STREETCAR INTENTIONS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 14, - "FirstName": "VIVIEN", - "LastName": "BERGEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 58, - "FirstName": "CHRISTIAN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 70, - "FirstName": "MICHELLE", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 93, - "FirstName": "ELLEN", - "LastName": "PRESLEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 112, - "FirstName": "RUSSELL", - "LastName": "BACALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 167, - "FirstName": "LAURENCE", - "LastName": "BULLOCK", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 858, - "Title": "SUBMARINE BED", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 4, - "FirstName": "JENNIFER", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 54, - "FirstName": "PENELOPE", - "LastName": "PINKETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 58, - "FirstName": "CHRISTIAN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 80, - "FirstName": "RALPH", - "LastName": "CRUZ", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 105, - "FirstName": "SIDNEY", - "LastName": "CROWE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 106, - "FirstName": "GROUCHO", - "LastName": "DUNST", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 124, - "FirstName": "SCARLETT", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 191, - "FirstName": "GREGORY", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 861, - "Title": "SUIT WALLS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 42, - "FirstName": "TOM", - "LastName": "MIRANDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 54, - "FirstName": "PENELOPE", - "LastName": "PINKETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 67, - "FirstName": "JESSICA", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 134, - "FirstName": "GENE", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 863, - "Title": "SUN CONFESSIONS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 18, - "FirstName": "DAN", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 109, - "FirstName": "SYLVESTER", - "LastName": "DERN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 141, - "FirstName": "CATE", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 142, - "FirstName": "JADA", - "LastName": "RYDER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 872, - "Title": "SWEET BROTHERHOOD", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 74, - "FirstName": "MILLA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 143, - "FirstName": "RIVER", - "LastName": "DEAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 176, - "FirstName": "JON", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 884, - "Title": "TERMINATOR CLUB", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 121, - "FirstName": "LIZA", - "LastName": "BERGMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 164, - "FirstName": "HUMPHREY", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 889, - "Title": "TIES HUNGER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 9, - "FirstName": "JOE", - "LastName": "SWANK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 27, - "FirstName": "JULIA", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 46, - "FirstName": "PARKER", - "LastName": "GOLDBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 92, - "FirstName": "KIRSTEN", - "LastName": "AKROYD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 150, - "FirstName": "JAYNE", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 168, - "FirstName": "WILL", - "LastName": "WILSON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 890, - "Title": "TIGHTS DAWN", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 14, - "FirstName": "VIVIEN", - "LastName": "BERGEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 42, - "FirstName": "TOM", - "LastName": "MIRANDA", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 113, - "FirstName": "MORGAN", - "LastName": "HOPKINS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 155, - "FirstName": "IAN", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 175, - "FirstName": "WILLIAM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 892, - "Title": "TITANIC BOONDOCK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 6, - "FirstName": "BETTE", - "LastName": "NICHOLSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 56, - "FirstName": "DAN", - "LastName": "HARRIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 108, - "FirstName": "WARREN", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 139, - "FirstName": "EWAN", - "LastName": "GOODING", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 150, - "FirstName": "JAYNE", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 168, - "FirstName": "WILL", - "LastName": "WILSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 171, - "FirstName": "OLYMPIA", - "LastName": "PFEIFFER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 181, - "FirstName": "MATTHEW", - "LastName": "CARREY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 198, - "FirstName": "MARY", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 895, - "Title": "TOMORROW HUSTLER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 8, - "FirstName": "MATTHEW", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 85, - "FirstName": "MINNIE", - "LastName": "ZELLWEGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 103, - "FirstName": "MATTHEW", - "LastName": "LEIGH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 900, - "Title": "TOWN ARK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 7, - "FirstName": "GRACE", - "LastName": "MOSTEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 37, - "FirstName": "VAL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 904, - "Title": "TRAIN BUNCH", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 26, - "FirstName": "RIP", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 27, - "FirstName": "JULIA", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 132, - "FirstName": "ADAM", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 913, - "Title": "TROOPERS METAL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 47, - "FirstName": "JULIA", - "LastName": "BARRYMORE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 54, - "FirstName": "PENELOPE", - "LastName": "PINKETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 149, - "FirstName": "RUSSELL", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 917, - "Title": "TUXEDO MILE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 18, - "FirstName": "DAN", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 43, - "FirstName": "KIRK", - "LastName": "JOVOVICH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 137, - "FirstName": "MORGAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 923, - "Title": "UNFAITHFUL KILL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 47, - "FirstName": "JULIA", - "LastName": "BARRYMORE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 86, - "FirstName": "GREG", - "LastName": "CHAPLIN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 95, - "FirstName": "DARYL", - "LastName": "WAHLBERG", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 138, - "FirstName": "LUCILLE", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 145, - "FirstName": "KIM", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 167, - "FirstName": "LAURENCE", - "LastName": "BULLOCK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 925, - "Title": "UNITED PILOT", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 37, - "FirstName": "VAL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 64, - "FirstName": "RAY", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 90, - "FirstName": "SEAN", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 170, - "FirstName": "MENA", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 188, - "FirstName": "ROCK", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 930, - "Title": "VACATION BOONDOCK", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 10, - "FirstName": "CHRISTIAN", - "LastName": "GABLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 55, - "FirstName": "FAY", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 97, - "FirstName": "MEG", - "LastName": "HAWKE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 130, - "FirstName": "GRETA", - "LastName": "KEITEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 132, - "FirstName": "ADAM", - "LastName": "HOPPER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 178, - "FirstName": "LISA", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 935, - "Title": "VANISHED GARDEN", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 23, - "FirstName": "SANDRA", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 76, - "FirstName": "ANGELINA", - "LastName": "ASTAIRE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 938, - "Title": "VELVET TERMINATOR", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 11, - "FirstName": "ZERO", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 40, - "FirstName": "JOHNNY", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 65, - "FirstName": "ANGELA", - "LastName": "HUDSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 72, - "FirstName": "SEAN", - "LastName": "WILLIAMS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 77, - "FirstName": "CARY", - "LastName": "MCCONAUGHEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 118, - "FirstName": "CUBA", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 129, - "FirstName": "DARYL", - "LastName": "CRAWFORD", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 153, - "FirstName": "MINNIE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 194, - "FirstName": "MERYL", - "LastName": "ALLEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 939, - "Title": "VERTIGO NORTHWEST", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 1, - "FirstName": "PENELOPE", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 116, - "FirstName": "DAN", - "LastName": "STREEP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 119, - "FirstName": "WARREN", - "LastName": "JACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 196, - "FirstName": "BELA", - "LastName": "WALKEN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 945, - "Title": "VIRGINIAN PLUTO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 12, - "FirstName": "KARL", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 30, - "FirstName": "SANDRA", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 63, - "FirstName": "CAMERON", - "LastName": "WRAY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 67, - "FirstName": "JESSICA", - "LastName": "BAILEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 96, - "FirstName": "GENE", - "LastName": "WILLIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 146, - "FirstName": "ALBERT", - "LastName": "JOHANSSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 200, - "FirstName": "THORA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 961, - "Title": "WASH HEAVENLY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 53, - "FirstName": "MENA", - "LastName": "TEMPLE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 87, - "FirstName": "SPENCER", - "LastName": "PECK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 110, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 114, - "FirstName": "MORGAN", - "LastName": "MCDORMAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 122, - "FirstName": "SALMA", - "LastName": "NOLTE", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 967, - "Title": "WEEKEND PERSONAL", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 3, - "FirstName": "ED", - "LastName": "CHASE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 16, - "FirstName": "FRED", - "LastName": "COSTNER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 27, - "FirstName": "JULIA", - "LastName": "MCQUEEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 99, - "FirstName": "JIM", - "LastName": "MOSTEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 100, - "FirstName": "SPENCER", - "LastName": "DEPP", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 109, - "FirstName": "SYLVESTER", - "LastName": "DERN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 157, - "FirstName": "GRETA", - "LastName": "MALDEN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 158, - "FirstName": "VIVIEN", - "LastName": "BASINGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 184, - "FirstName": "HUMPHREY", - "LastName": "GARLAND", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 974, - "Title": "WILD APOLLO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 9, - "FirstName": "JOE", - "LastName": "SWANK", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 51, - "FirstName": "GARY", - "LastName": "PHOENIX", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 178, - "FirstName": "LISA", - "LastName": "MONROE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 975, - "Title": "WILLOW TRACY", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 84, - "FirstName": "JAMES", - "LastName": "PITT", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 976, - "Title": "WIND PHANTOM", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 89, - "FirstName": "CHARLIZE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 179, - "FirstName": "ED", - "LastName": "GUINESS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 187, - "FirstName": "RENEE", - "LastName": "BALL", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 977, - "Title": "WINDOW SIDE", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 20, - "FirstName": "LUCILLE", - "LastName": "TRACY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 49, - "FirstName": "ANNE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 107, - "FirstName": "GINA", - "LastName": "DEGENERES", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 175, - "FirstName": "WILLIAM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 978, - "Title": "WISDOM WORKER", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 31, - "FirstName": "SISSY", - "LastName": "SOBIESKI", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 45, - "FirstName": "REESE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 82, - "FirstName": "WOODY", - "LastName": "JOLIE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 99, - "FirstName": "JIM", - "LastName": "MOSTEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 101, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 159, - "FirstName": "LAURA", - "LastName": "BRODY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 175, - "FirstName": "WILLIAM", - "LastName": "HACKMAN", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 982, - "Title": "WOMEN DORADO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 44, - "FirstName": "NICK", - "LastName": "STALLONE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 91, - "FirstName": "CHRISTOPHER", - "LastName": "BERRY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 93, - "FirstName": "ELLEN", - "LastName": "PRESLEY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 99, - "FirstName": "JIM", - "LastName": "MOSTEL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 174, - "FirstName": "MICHAEL", - "LastName": "BENING", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 988, - "Title": "WORKER TARZAN", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 11, - "FirstName": "ZERO", - "LastName": "CAGE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 54, - "FirstName": "PENELOPE", - "LastName": "PINKETT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 62, - "FirstName": "JAYNE", - "LastName": "NEESON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 101, - "FirstName": "SUSAN", - "LastName": "DAVIS", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 112, - "FirstName": "RUSSELL", - "LastName": "BACALL", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 123, - "FirstName": "JULIANNE", - "LastName": "DENCH", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 153, - "FirstName": "MINNIE", - "LastName": "KILMER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 154, - "FirstName": "MERYL", - "LastName": "GIBSON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 188, - "FirstName": "ROCK", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 989, - "Title": "WORKING MICROCOSMOS", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 37, - "FirstName": "VAL", - "LastName": "BOLGER", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 94, - "FirstName": "KENNETH", - "LastName": "TORN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 138, - "FirstName": "LUCILLE", - "LastName": "DEE", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 151, - "FirstName": "GEOFFREY", - "LastName": "HESTON", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 188, - "FirstName": "ROCK", - "LastName": "DUKAKIS", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 995, - "Title": "YENTL IDAHO", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 197, - "FirstName": "REESE", - "LastName": "WEST", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - }, - { - "FilmID": 999, - "Title": "ZOOLANDER FICTION", - "Description": null, - "ReleaseYear": null, - "LanguageID": 0, - "OriginalLanguageID": null, - "RentalDuration": 0, - "RentalRate": 0, - "Length": null, - "ReplacementCost": 0, - "Rating": "R", - "SpecialFeatures": null, - "LastUpdate": "0001-01-01T00:00:00Z", - "Actors": [ - { - "ActorID": 52, - "FirstName": "CARMEN", - "LastName": "HUNT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 66, - "FirstName": "MARY", - "LastName": "TANDY", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 104, - "FirstName": "PENELOPE", - "LastName": "CRONYN", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 140, - "FirstName": "WHOOPI", - "LastName": "HURT", - "LastUpdate": "2006-02-15T04:34:33Z" - }, - { - "ActorID": 142, - "FirstName": "JADA", - "LastName": "RYDER", - "LastUpdate": "2006-02-15T04:34:33Z" - } - ] - } -] \ No newline at end of file diff --git a/tests/postgres/alltypes_test.go b/tests/postgres/alltypes_test.go index 402ae42..2b91c7a 100644 --- a/tests/postgres/alltypes_test.go +++ b/tests/postgres/alltypes_test.go @@ -6,7 +6,7 @@ import ( . "github.com/go-jet/jet/postgres" "github.com/go-jet/jet/tests/.gentestdata/jetdb/test_sample/model" . "github.com/go-jet/jet/tests/.gentestdata/jetdb/test_sample/table" - "github.com/go-jet/jet/tests/testdata/common" + "github.com/go-jet/jet/tests/testdata/results/common" "github.com/google/uuid" "gotest.tools/assert" "testing" @@ -308,7 +308,7 @@ LIMIT $5; assert.NilError(t, err) - testutils.AssertJSONFile(t, dest, "./testdata/common/bool_operators.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/common/bool_operators.json") } func TestFloatOperators(t *testing.T) { @@ -406,7 +406,7 @@ LIMIT $35; //testutils.PrintJson(dest) - testutils.AssertJSONFile(t, dest, "./testdata/common/float_operators.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/common/float_operators.json") } func TestIntegerOperators(t *testing.T) { @@ -545,7 +545,7 @@ LIMIT $23; //testutils.SaveJsonFile("./testdata/common/int_operators.json", dest) //testutils.PrintJson(dest) - testutils.AssertJSONFile(t, dest, "./testdata/common/int_operators.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/common/int_operators.json") } func TestTimeExpression(t *testing.T) { diff --git a/tests/postgres/chinook_db_test.go b/tests/postgres/chinook_db_test.go index c4dbd28..8969b0b 100644 --- a/tests/postgres/chinook_db_test.go +++ b/tests/postgres/chinook_db_test.go @@ -105,7 +105,7 @@ func TestJoinEverything(t *testing.T) { assert.NilError(t, err) assert.Equal(t, len(dest), 275) - testutils.AssertJSONFile(t, dest, "./postgres/testdata/joined_everything.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/postgres/joined_everything.json") } func TestSelfJoin(t *testing.T) { diff --git a/tests/postgres/northwind_test.go b/tests/postgres/northwind_test.go index f547af4..8a02665 100644 --- a/tests/postgres/northwind_test.go +++ b/tests/postgres/northwind_test.go @@ -62,5 +62,5 @@ func TestNorthwindJoinEverything(t *testing.T) { assert.NilError(t, err) //jsonSave("./testdata/northwind-all.json", dest) - testutils.AssertJSONFile(t, dest, "./postgres/testdata/northwind-all.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/postgres/northwind-all.json") } diff --git a/tests/postgres/select_test.go b/tests/postgres/select_test.go index 38b5e1e..8b4d8c7 100644 --- a/tests/postgres/select_test.go +++ b/tests/postgres/select_test.go @@ -1061,7 +1061,7 @@ ORDER BY customer.customer_id, SUM(payment.amount) ASC; assert.Equal(t, len(dest), 104) //testutils.SaveJsonFile(dest, "postgres/testdata/customer_payment_sum.json") - testutils.AssertJSONFile(t, dest, "postgres/testdata/customer_payment_sum.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/postgres/customer_payment_sum.json") } func TestSelectGroupBy2(t *testing.T) { @@ -1506,7 +1506,7 @@ ORDER BY actor.actor_id ASC, film.film_id ASC; assert.NilError(t, err) //jsonSave("./testdata/quick-start-dest.json", dest) - testutils.AssertJSONFile(t, dest, "./postgres/testdata/quick-start-dest.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/postgres/quick-start-dest.json") var dest2 []struct { model.Category @@ -1519,7 +1519,7 @@ ORDER BY actor.actor_id ASC, film.film_id ASC; assert.NilError(t, err) //jsonSave("./testdata/quick-start-dest2.json", dest2) - testutils.AssertJSONFile(t, dest2, "./postgres/testdata/quick-start-dest2.json") + testutils.AssertJSONFile(t, dest2, "./testdata/results/postgres/quick-start-dest2.json") } func TestQuickStartWithSubQueries(t *testing.T) { @@ -1571,7 +1571,7 @@ func TestQuickStartWithSubQueries(t *testing.T) { assert.NilError(t, err) //jsonSave("./testdata/quick-start-dest.json", dest) - testutils.AssertJSONFile(t, dest, "./postgres/testdata/quick-start-dest.json") + testutils.AssertJSONFile(t, dest, "./testdata/results/postgres/quick-start-dest.json") var dest2 []struct { model.Category @@ -1584,7 +1584,7 @@ func TestQuickStartWithSubQueries(t *testing.T) { assert.NilError(t, err) //jsonSave("./testdata/quick-start-dest2.json", dest2) - testutils.AssertJSONFile(t, dest2, "./postgres/testdata/quick-start-dest2.json") + testutils.AssertJSONFile(t, dest2, "./testdata/results/postgres/quick-start-dest2.json") } func TestExpressionWrappers(t *testing.T) { diff --git a/tests/postgres/testdata/customer_payment_sum.json b/tests/postgres/testdata/customer_payment_sum.json deleted file mode 100644 index 50ec365..0000000 --- a/tests/postgres/testdata/customer_payment_sum.json +++ /dev/null @@ -1,1978 +0,0 @@ -[ - { - "CustomerID": 3, - "StoreID": 1, - "FirstName": "Linda", - "LastName": "Williams", - "Email": "linda.williams@sakilacustomer.org", - "AddressID": 7, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 130.76, - "Avg": 5.448333333333333, - "Max": 10.99, - "Min": 0.99, - "Count": 24 - } - }, - { - "CustomerID": 5, - "StoreID": 1, - "FirstName": "Elizabeth", - "LastName": "Brown", - "Email": "elizabeth.brown@sakilacustomer.org", - "AddressID": 9, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 134.65, - "Avg": 3.847142857142857, - "Max": 9.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 7, - "StoreID": 1, - "FirstName": "Maria", - "LastName": "Miller", - "Email": "maria.miller@sakilacustomer.org", - "AddressID": 11, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 130.72, - "Avg": 4.668571428571429, - "Max": 8.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 13, - "StoreID": 2, - "FirstName": "Karen", - "LastName": "Jackson", - "Email": "karen.jackson@sakilacustomer.org", - "AddressID": 17, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 131.73, - "Avg": 4.878888888888889, - "Max": 11.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 15, - "StoreID": 1, - "FirstName": "Helen", - "LastName": "Harris", - "Email": "helen.harris@sakilacustomer.org", - "AddressID": 19, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 134.68, - "Avg": 4.20875, - "Max": 8.99, - "Min": 0, - "Count": 32 - } - }, - { - "CustomerID": 21, - "StoreID": 1, - "FirstName": "Michelle", - "LastName": "Clark", - "Email": "michelle.clark@sakilacustomer.org", - "AddressID": 25, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 146.68, - "Avg": 4.58375, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 26, - "StoreID": 2, - "FirstName": "Jessica", - "LastName": "Hall", - "Email": "jessica.hall@sakilacustomer.org", - "AddressID": 30, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 146.68, - "Avg": 4.58375, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 29, - "StoreID": 2, - "FirstName": "Angela", - "LastName": "Hernandez", - "Email": "angela.hernandez@sakilacustomer.org", - "AddressID": 33, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 138.65, - "Avg": 3.9614285714285713, - "Max": 10.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 38, - "StoreID": 1, - "FirstName": "Martha", - "LastName": "Gonzalez", - "Email": "martha.gonzalez@sakilacustomer.org", - "AddressID": 42, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 127.66, - "Avg": 3.7547058823529413, - "Max": 6.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 39, - "StoreID": 1, - "FirstName": "Debra", - "LastName": "Nelson", - "Email": "debra.nelson@sakilacustomer.org", - "AddressID": 43, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 141.71, - "Avg": 4.886551724137931, - "Max": 9.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 46, - "StoreID": 2, - "FirstName": "Catherine", - "LastName": "Campbell", - "Email": "catherine.campbell@sakilacustomer.org", - "AddressID": 50, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 131.69, - "Avg": 4.248064516129032, - "Max": 8.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 50, - "StoreID": 1, - "FirstName": "Diane", - "LastName": "Collins", - "Email": "diane.collins@sakilacustomer.org", - "AddressID": 54, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 144.7, - "Avg": 4.823333333333333, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 66, - "StoreID": 2, - "FirstName": "Janice", - "LastName": "Ward", - "Email": "janice.ward@sakilacustomer.org", - "AddressID": 70, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 139.67, - "Avg": 4.232424242424242, - "Max": 8.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 75, - "StoreID": 2, - "FirstName": "Tammy", - "LastName": "Sanders", - "Email": "tammy.sanders@sakilacustomer.org", - "AddressID": 79, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 149.61, - "Avg": 3.836153846153846, - "Max": 9.99, - "Min": 0, - "Count": 39 - } - }, - { - "CustomerID": 78, - "StoreID": 1, - "FirstName": "Lori", - "LastName": "Wood", - "Email": "lori.wood@sakilacustomer.org", - "AddressID": 82, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 141.69, - "Avg": 4.570645161290322, - "Max": 10.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 80, - "StoreID": 1, - "FirstName": "Marilyn", - "LastName": "Ross", - "Email": "marilyn.ross@sakilacustomer.org", - "AddressID": 84, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 137.7, - "Avg": 4.59, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 84, - "StoreID": 2, - "FirstName": "Sara", - "LastName": "Perry", - "Email": "sara.perry@sakilacustomer.org", - "AddressID": 88, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 128.7, - "Avg": 4.29, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 86, - "StoreID": 2, - "FirstName": "Jacqueline", - "LastName": "Long", - "Email": "jacqueline.long@sakilacustomer.org", - "AddressID": 90, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 146.68, - "Avg": 4.58375, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 87, - "StoreID": 1, - "FirstName": "Wanda", - "LastName": "Patterson", - "Email": "wanda.patterson@sakilacustomer.org", - "AddressID": 91, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 137.72, - "Avg": 4.918571428571429, - "Max": 10.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 102, - "StoreID": 1, - "FirstName": "Crystal", - "LastName": "Ford", - "Email": "crystal.ford@sakilacustomer.org", - "AddressID": 106, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 129.7, - "Avg": 4.323333333333333, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 103, - "StoreID": 1, - "FirstName": "Gladys", - "LastName": "Hamilton", - "Email": "gladys.hamilton@sakilacustomer.org", - "AddressID": 107, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 128.71, - "Avg": 4.4382758620689655, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 108, - "StoreID": 1, - "FirstName": "Tracy", - "LastName": "Cole", - "Email": "tracy.cole@sakilacustomer.org", - "AddressID": 112, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 126.72, - "Avg": 4.525714285714286, - "Max": 8.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 112, - "StoreID": 2, - "FirstName": "Rosa", - "LastName": "Reynolds", - "Email": "rosa.reynolds@sakilacustomer.org", - "AddressID": 116, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 129.72, - "Avg": 4.632857142857143, - "Max": 8.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 114, - "StoreID": 2, - "FirstName": "Grace", - "LastName": "Ellis", - "Email": "grace.ellis@sakilacustomer.org", - "AddressID": 118, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 126.7, - "Avg": 4.223333333333334, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 119, - "StoreID": 1, - "FirstName": "Sherry", - "LastName": "Marshall", - "Email": "sherry.marshall@sakilacustomer.org", - "AddressID": 123, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 139.69, - "Avg": 4.506129032258064, - "Max": 8.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 120, - "StoreID": 2, - "FirstName": "Sylvia", - "LastName": "Ortiz", - "Email": "sylvia.ortiz@sakilacustomer.org", - "AddressID": 124, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 134.7, - "Avg": 4.49, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 125, - "StoreID": 1, - "FirstName": "Ethel", - "LastName": "Webb", - "Email": "ethel.webb@sakilacustomer.org", - "AddressID": 129, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 131.69, - "Avg": 4.248064516129032, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 137, - "StoreID": 2, - "FirstName": "Rhonda", - "LastName": "Kennedy", - "Email": "rhonda.kennedy@sakilacustomer.org", - "AddressID": 141, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 191.62, - "Avg": 5.042631578947368, - "Max": 9.99, - "Min": 0.99, - "Count": 38 - } - }, - { - "CustomerID": 141, - "StoreID": 1, - "FirstName": "Debbie", - "LastName": "Reyes", - "Email": "debbie.reyes@sakilacustomer.org", - "AddressID": 145, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 127.69, - "Avg": 4.119032258064516, - "Max": 7.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 144, - "StoreID": 1, - "FirstName": "Clara", - "LastName": "Shaw", - "Email": "clara.shaw@sakilacustomer.org", - "AddressID": 148, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 189.6, - "Avg": 4.74, - "Max": 9.99, - "Min": 0.99, - "Count": 40 - } - }, - { - "CustomerID": 146, - "StoreID": 1, - "FirstName": "Jamie", - "LastName": "Rice", - "Email": "jamie.rice@sakilacustomer.org", - "AddressID": 150, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 126.73, - "Avg": 4.6937037037037035, - "Max": 7.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 147, - "StoreID": 2, - "FirstName": "Joanne", - "LastName": "Robertson", - "Email": "joanne.robertson@sakilacustomer.org", - "AddressID": 151, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 125.68, - "Avg": 3.9275, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 148, - "StoreID": 1, - "FirstName": "Eleanor", - "LastName": "Hunt", - "Email": "eleanor.hunt@sakilacustomer.org", - "AddressID": 152, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 211.55, - "Avg": 4.7011111111111115, - "Max": 10.99, - "Min": 0.99, - "Count": 45 - } - }, - { - "CustomerID": 168, - "StoreID": 1, - "FirstName": "Regina", - "LastName": "Berry", - "Email": "regina.berry@sakilacustomer.org", - "AddressID": 172, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 129.68, - "Avg": 4.0525, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 172, - "StoreID": 1, - "FirstName": "Bernice", - "LastName": "Willis", - "Email": "bernice.willis@sakilacustomer.org", - "AddressID": 176, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 133.7, - "Avg": 4.456666666666667, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 176, - "StoreID": 1, - "FirstName": "June", - "LastName": "Carroll", - "Email": "june.carroll@sakilacustomer.org", - "AddressID": 180, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 151.68, - "Avg": 4.74, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 178, - "StoreID": 2, - "FirstName": "Marion", - "LastName": "Snyder", - "Email": "marion.snyder@sakilacustomer.org", - "AddressID": 182, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 194.61, - "Avg": 4.99, - "Max": 10.99, - "Min": 0.99, - "Count": 39 - } - }, - { - "CustomerID": 181, - "StoreID": 2, - "FirstName": "Ana", - "LastName": "Bradley", - "Email": "ana.bradley@sakilacustomer.org", - "AddressID": 185, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 167.67, - "Avg": 5.080909090909091, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 187, - "StoreID": 2, - "FirstName": "Brittany", - "LastName": "Riley", - "Email": "brittany.riley@sakilacustomer.org", - "AddressID": 191, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 151.73, - "Avg": 5.61962962962963, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 196, - "StoreID": 1, - "FirstName": "Alma", - "LastName": "Austin", - "Email": "alma.austin@sakilacustomer.org", - "AddressID": 200, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 128.69, - "Avg": 4.151290322580645, - "Max": 10.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 197, - "StoreID": 2, - "FirstName": "Sue", - "LastName": "Peters", - "Email": "sue.peters@sakilacustomer.org", - "AddressID": 201, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 133.68, - "Avg": 4.1775, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 200, - "StoreID": 2, - "FirstName": "Jeanne", - "LastName": "Lawson", - "Email": "jeanne.lawson@sakilacustomer.org", - "AddressID": 204, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 126.74, - "Avg": 4.874615384615384, - "Max": 10.99, - "Min": 0.99, - "Count": 26 - } - }, - { - "CustomerID": 204, - "StoreID": 1, - "FirstName": "Rosemary", - "LastName": "Schmidt", - "Email": "rosemary.schmidt@sakilacustomer.org", - "AddressID": 208, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 134.69, - "Avg": 4.344838709677419, - "Max": 11.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 206, - "StoreID": 1, - "FirstName": "Terri", - "LastName": "Vasquez", - "Email": "terri.vasquez@sakilacustomer.org", - "AddressID": 210, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 126.73, - "Avg": 4.6937037037037035, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 209, - "StoreID": 2, - "FirstName": "Tonya", - "LastName": "Chapman", - "Email": "tonya.chapman@sakilacustomer.org", - "AddressID": 213, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 147.71, - "Avg": 5.093448275862069, - "Max": 9.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 210, - "StoreID": 2, - "FirstName": "Ella", - "LastName": "Oliver", - "Email": "ella.oliver@sakilacustomer.org", - "AddressID": 214, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 134.7, - "Avg": 4.49, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 211, - "StoreID": 1, - "FirstName": "Stacey", - "LastName": "Montgomery", - "Email": "stacey.montgomery@sakilacustomer.org", - "AddressID": 215, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 146.67, - "Avg": 4.444545454545454, - "Max": 8.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 221, - "StoreID": 1, - "FirstName": "Bessie", - "LastName": "Morrison", - "Email": "bessie.morrison@sakilacustomer.org", - "AddressID": 225, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 127.73, - "Avg": 4.730740740740741, - "Max": 10.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 236, - "StoreID": 1, - "FirstName": "Marcia", - "LastName": "Dean", - "Email": "marcia.dean@sakilacustomer.org", - "AddressID": 240, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 166.61, - "Avg": 4.272051282051282, - "Max": 8.99, - "Min": 0.99, - "Count": 39 - } - }, - { - "CustomerID": 237, - "StoreID": 1, - "FirstName": "Tanya", - "LastName": "Gilbert", - "Email": "tanya.gilbert@sakilacustomer.org", - "AddressID": 241, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 138.69, - "Avg": 4.473870967741935, - "Max": 11.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 242, - "StoreID": 1, - "FirstName": "Glenda", - "LastName": "Frazier", - "Email": "glenda.frazier@sakilacustomer.org", - "AddressID": 246, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 128.71, - "Avg": 4.4382758620689655, - "Max": 9.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 257, - "StoreID": 2, - "FirstName": "Marsha", - "LastName": "Douglas", - "Email": "marsha.douglas@sakilacustomer.org", - "AddressID": 262, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 142.66, - "Avg": 4.195882352941177, - "Max": 7.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 259, - "StoreID": 2, - "FirstName": "Lena", - "LastName": "Jensen", - "Email": "lena.jensen@sakilacustomer.org", - "AddressID": 264, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 154.7, - "Avg": 5.156666666666666, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 265, - "StoreID": 2, - "FirstName": "Jennie", - "LastName": "Terry", - "Email": "jennie.terry@sakilacustomer.org", - "AddressID": 270, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 132.72, - "Avg": 4.74, - "Max": 9.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 267, - "StoreID": 1, - "FirstName": "Margie", - "LastName": "Wade", - "Email": "margie.wade@sakilacustomer.org", - "AddressID": 272, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 142.67, - "Avg": 4.323333333333333, - "Max": 9.99, - "Min": 0, - "Count": 33 - } - }, - { - "CustomerID": 273, - "StoreID": 2, - "FirstName": "Priscilla", - "LastName": "Lowe", - "Email": "priscilla.lowe@sakilacustomer.org", - "AddressID": 278, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 130.72, - "Avg": 4.668571428571429, - "Max": 8.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 295, - "StoreID": 1, - "FirstName": "Daisy", - "LastName": "Bates", - "Email": "daisy.bates@sakilacustomer.org", - "AddressID": 300, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 125.72, - "Avg": 4.49, - "Max": 9.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 342, - "StoreID": 1, - "FirstName": "Harold", - "LastName": "Martino", - "Email": "harold.martino@sakilacustomer.org", - "AddressID": 347, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 130.68, - "Avg": 4.08375, - "Max": 8.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 346, - "StoreID": 1, - "FirstName": "Arthur", - "LastName": "Simpkins", - "Email": "arthur.simpkins@sakilacustomer.org", - "AddressID": 351, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 145.7, - "Avg": 4.8566666666666665, - "Max": 8.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 347, - "StoreID": 2, - "FirstName": "Ryan", - "LastName": "Salisbury", - "Email": "ryan.salisbury@sakilacustomer.org", - "AddressID": 352, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 142.7, - "Avg": 4.756666666666667, - "Max": 10.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 348, - "StoreID": 2, - "FirstName": "Roger", - "LastName": "Quintanilla", - "Email": "roger.quintanilla@sakilacustomer.org", - "AddressID": 353, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 144.66, - "Avg": 4.254705882352941, - "Max": 9.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 349, - "StoreID": 2, - "FirstName": "Joe", - "LastName": "Gilliland", - "Email": "joe.gilliland@sakilacustomer.org", - "AddressID": 354, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 133.72, - "Avg": 4.775714285714286, - "Max": 8.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 354, - "StoreID": 2, - "FirstName": "Justin", - "LastName": "Ngo", - "Email": "justin.ngo@sakilacustomer.org", - "AddressID": 359, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 125.67, - "Avg": 3.808181818181818, - "Max": 8.99, - "Min": 0, - "Count": 33 - } - }, - { - "CustomerID": 360, - "StoreID": 2, - "FirstName": "Ralph", - "LastName": "Madrigal", - "Email": "ralph.madrigal@sakilacustomer.org", - "AddressID": 365, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 144.68, - "Avg": 4.52125, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 362, - "StoreID": 1, - "FirstName": "Nicholas", - "LastName": "Barfield", - "Email": "nicholas.barfield@sakilacustomer.org", - "AddressID": 367, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 140.69, - "Avg": 4.538387096774193, - "Max": 11.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 363, - "StoreID": 2, - "FirstName": "Roy", - "LastName": "Whiting", - "Email": "roy.whiting@sakilacustomer.org", - "AddressID": 368, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 139.72, - "Avg": 4.99, - "Max": 9.99, - "Min": 2.99, - "Count": 28 - } - }, - { - "CustomerID": 366, - "StoreID": 1, - "FirstName": "Brandon", - "LastName": "Huey", - "Email": "brandon.huey@sakilacustomer.org", - "AddressID": 371, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 145.64, - "Avg": 4.045555555555556, - "Max": 6.99, - "Min": 0.99, - "Count": 36 - } - }, - { - "CustomerID": 368, - "StoreID": 1, - "FirstName": "Harry", - "LastName": "Arce", - "Email": "harry.arce@sakilacustomer.org", - "AddressID": 373, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 0, - "Amount": { - "Sum": 139.69, - "Avg": 4.506129032258064, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 372, - "StoreID": 2, - "FirstName": "Steve", - "LastName": "Mackenzie", - "Email": "steve.mackenzie@sakilacustomer.org", - "AddressID": 377, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 152.68, - "Avg": 4.77125, - "Max": 10.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 373, - "StoreID": 1, - "FirstName": "Louis", - "LastName": "Leone", - "Email": "louis.leone@sakilacustomer.org", - "AddressID": 378, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 156.66, - "Avg": 4.607647058823529, - "Max": 8.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 380, - "StoreID": 1, - "FirstName": "Russell", - "LastName": "Brinson", - "Email": "russell.brinson@sakilacustomer.org", - "AddressID": 385, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 132.65, - "Avg": 3.79, - "Max": 10.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 390, - "StoreID": 1, - "FirstName": "Shawn", - "LastName": "Heaton", - "Email": "shawn.heaton@sakilacustomer.org", - "AddressID": 395, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 142.69, - "Avg": 4.602903225806451, - "Max": 8.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 403, - "StoreID": 1, - "FirstName": "Mike", - "LastName": "Way", - "Email": "mike.way@sakilacustomer.org", - "AddressID": 408, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 162.67, - "Avg": 4.92939393939394, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 404, - "StoreID": 2, - "FirstName": "Stanley", - "LastName": "Scroggins", - "Email": "stanley.scroggins@sakilacustomer.org", - "AddressID": 409, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 133.71, - "Avg": 4.610689655172414, - "Max": 10.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 410, - "StoreID": 2, - "FirstName": "Curtis", - "LastName": "Irby", - "Email": "curtis.irby@sakilacustomer.org", - "AddressID": 415, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 167.62, - "Avg": 4.411052631578947, - "Max": 10.99, - "Min": 0.99, - "Count": 38 - } - }, - { - "CustomerID": 426, - "StoreID": 1, - "FirstName": "Bradley", - "LastName": "Motley", - "Email": "bradley.motley@sakilacustomer.org", - "AddressID": 431, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 125.74, - "Avg": 4.836153846153846, - "Max": 10.99, - "Min": 0.99, - "Count": 26 - } - }, - { - "CustomerID": 436, - "StoreID": 1, - "FirstName": "Troy", - "LastName": "Quigley", - "Email": "troy.quigley@sakilacustomer.org", - "AddressID": 441, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 126.73, - "Avg": 4.6937037037037035, - "Max": 9.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 439, - "StoreID": 2, - "FirstName": "Alexander", - "LastName": "Fennell", - "Email": "alexander.fennell@sakilacustomer.org", - "AddressID": 444, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 137.67, - "Avg": 4.171818181818182, - "Max": 9.99, - "Min": 0.99, - "Count": 33 - } - }, - { - "CustomerID": 448, - "StoreID": 1, - "FirstName": "Miguel", - "LastName": "Betancourt", - "Email": "miguel.betancourt@sakilacustomer.org", - "AddressID": 453, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 127.73, - "Avg": 4.730740740740741, - "Max": 10.99, - "Min": 0, - "Count": 27 - } - }, - { - "CustomerID": 454, - "StoreID": 2, - "FirstName": "Alex", - "LastName": "Gresham", - "Email": "alex.gresham@sakilacustomer.org", - "AddressID": 459, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 143.68, - "Avg": 4.49, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 459, - "StoreID": 1, - "FirstName": "Tommy", - "LastName": "Collazo", - "Email": "tommy.collazo@sakilacustomer.org", - "AddressID": 464, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 183.63, - "Avg": 4.962972972972973, - "Max": 10.99, - "Min": 0.99, - "Count": 37 - } - }, - { - "CustomerID": 462, - "StoreID": 2, - "FirstName": "Warren", - "LastName": "Sherrod", - "Email": "warren.sherrod@sakilacustomer.org", - "AddressID": 467, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 152.69, - "Avg": 4.925483870967742, - "Max": 9.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 467, - "StoreID": 2, - "FirstName": "Alvin", - "LastName": "Deloach", - "Email": "alvin.deloach@sakilacustomer.org", - "AddressID": 472, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 134.72, - "Avg": 4.811428571428571, - "Max": 9.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 468, - "StoreID": 1, - "FirstName": "Tim", - "LastName": "Cary", - "Email": "tim.cary@sakilacustomer.org", - "AddressID": 473, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 154.66, - "Avg": 4.548823529411765, - "Max": 10.99, - "Min": 0.99, - "Count": 34 - } - }, - { - "CustomerID": 469, - "StoreID": 2, - "FirstName": "Wesley", - "LastName": "Bull", - "Email": "wesley.bull@sakilacustomer.org", - "AddressID": 474, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 158.65, - "Avg": 4.532857142857143, - "Max": 10.99, - "Min": 0.99, - "Count": 35 - } - }, - { - "CustomerID": 470, - "StoreID": 1, - "FirstName": "Gordon", - "LastName": "Allard", - "Email": "gordon.allard@sakilacustomer.org", - "AddressID": 475, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 157.69, - "Avg": 5.086774193548387, - "Max": 10.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 472, - "StoreID": 1, - "FirstName": "Greg", - "LastName": "Robins", - "Email": "greg.robins@sakilacustomer.org", - "AddressID": 477, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 131.74, - "Avg": 5.066923076923077, - "Max": 8.99, - "Min": 0.99, - "Count": 26 - } - }, - { - "CustomerID": 479, - "StoreID": 1, - "FirstName": "Zachary", - "LastName": "Hite", - "Email": "zachary.hite@sakilacustomer.org", - "AddressID": 484, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 134.71, - "Avg": 4.645172413793103, - "Max": 8.99, - "Min": 0.99, - "Count": 29 - } - }, - { - "CustomerID": 482, - "StoreID": 1, - "FirstName": "Maurice", - "LastName": "Crawley", - "Email": "maurice.crawley@sakilacustomer.org", - "AddressID": 487, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 0, - "Amount": { - "Sum": 125.74, - "Avg": 4.836153846153846, - "Max": 8.99, - "Min": 0.99, - "Count": 26 - } - }, - { - "CustomerID": 484, - "StoreID": 1, - "FirstName": "Roberto", - "LastName": "Vu", - "Email": "roberto.vu@sakilacustomer.org", - "AddressID": 489, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 128.73, - "Avg": 4.767777777777778, - "Max": 9.99, - "Min": 0.99, - "Count": 27 - } - }, - { - "CustomerID": 494, - "StoreID": 2, - "FirstName": "Ramon", - "LastName": "Choate", - "Email": "ramon.choate@sakilacustomer.org", - "AddressID": 499, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 135.7, - "Avg": 4.523333333333333, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 502, - "StoreID": 1, - "FirstName": "Brett", - "LastName": "Cornwell", - "Email": "brett.cornwell@sakilacustomer.org", - "AddressID": 507, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 130.7, - "Avg": 4.3566666666666665, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 513, - "StoreID": 2, - "FirstName": "Duane", - "LastName": "Tubbs", - "Email": "duane.tubbs@sakilacustomer.org", - "AddressID": 519, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 143.7, - "Avg": 4.79, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 520, - "StoreID": 2, - "FirstName": "Mitchell", - "LastName": "Westmoreland", - "Email": "mitchell.westmoreland@sakilacustomer.org", - "AddressID": 526, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 127.69, - "Avg": 4.119032258064516, - "Max": 10.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 522, - "StoreID": 2, - "FirstName": "Arnold", - "LastName": "Havens", - "Email": "arnold.havens@sakilacustomer.org", - "AddressID": 528, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 161.68, - "Avg": 5.0525, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 526, - "StoreID": 2, - "FirstName": "Karl", - "LastName": "Seal", - "Email": "karl.seal@sakilacustomer.org", - "AddressID": 532, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 208.58, - "Avg": 4.9661904761904765, - "Max": 10.99, - "Min": 0.99, - "Count": 42 - } - }, - { - "CustomerID": 532, - "StoreID": 2, - "FirstName": "Neil", - "LastName": "Renner", - "Email": "neil.renner@sakilacustomer.org", - "AddressID": 538, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 149.69, - "Avg": 4.828709677419355, - "Max": 8.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 533, - "StoreID": 1, - "FirstName": "Jessie", - "LastName": "Milam", - "Email": "jessie.milam@sakilacustomer.org", - "AddressID": 539, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 132.7, - "Avg": 4.423333333333333, - "Max": 9.99, - "Min": 0.99, - "Count": 30 - } - }, - { - "CustomerID": 550, - "StoreID": 2, - "FirstName": "Guy", - "LastName": "Brownlee", - "Email": "guy.brownlee@sakilacustomer.org", - "AddressID": 556, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 151.69, - "Avg": 4.893225806451613, - "Max": 10.99, - "Min": 0.99, - "Count": 31 - } - }, - { - "CustomerID": 558, - "StoreID": 1, - "FirstName": "Jimmie", - "LastName": "Eggleston", - "Email": "jimmie.eggleston@sakilacustomer.org", - "AddressID": 564, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 0, - "Amount": { - "Sum": 135.72, - "Avg": 4.847142857142857, - "Max": 10.99, - "Min": 0.99, - "Count": 28 - } - }, - { - "CustomerID": 560, - "StoreID": 1, - "FirstName": "Jordan", - "LastName": "Archuleta", - "Email": "jordan.archuleta@sakilacustomer.org", - "AddressID": 566, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 129.71, - "Avg": 4.472758620689655, - "Max": 9.99, - "Min": 0, - "Count": 29 - } - }, - { - "CustomerID": 566, - "StoreID": 1, - "FirstName": "Casey", - "LastName": "Mena", - "Email": "casey.mena@sakilacustomer.org", - "AddressID": 572, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 130.68, - "Avg": 4.08375, - "Max": 9.99, - "Min": 0.99, - "Count": 32 - } - }, - { - "CustomerID": 576, - "StoreID": 2, - "FirstName": "Morris", - "LastName": "Mccarter", - "Email": "morris.mccarter@sakilacustomer.org", - "AddressID": 582, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 135.68, - "Avg": 4.24, - "Max": 8.99, - "Min": 0, - "Count": 32 - } - }, - { - "CustomerID": 591, - "StoreID": 1, - "FirstName": "Kent", - "LastName": "Arsenault", - "Email": "kent.arsenault@sakilacustomer.org", - "AddressID": 597, - "Activebool": true, - "CreateDate": "2006-02-14T00:00:00Z", - "LastUpdate": "2013-05-26T14:49:45.738Z", - "Active": 1, - "Amount": { - "Sum": 134.73, - "Avg": 4.99, - "Max": 11.99, - "Min": 0.99, - "Count": 27 - } - } -] \ No newline at end of file diff --git a/tests/postgres/testdata/joined_everything.json b/tests/postgres/testdata/joined_everything.json deleted file mode 100644 index 0676e31..0000000 --- a/tests/postgres/testdata/joined_everything.json +++ /dev/null @@ -1,252320 +0,0 @@ -[ - { - "ArtistId": 1, - "Name": "AC/DC", - "Albums": [ - { - "AlbumId": 1, - "Title": "For Those About To Rock We Salute You", - "ArtistId": 1, - "Tracks": [ - { - "TrackId": 1, - "Name": "For Those About To Rock (We Salute You)", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 343719, - "Bytes": 11170334, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 108, - "CustomerId": 47, - "InvoiceDate": "2010-04-13T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 5.94, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 6, - "Name": "Put The Finger On You", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 205662, - "Bytes": 6713451, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 2, - "CustomerId": 4, - "InvoiceDate": "2009-01-02T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 3.96, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 7, - "Name": "Let's Get It Up", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 233926, - "Bytes": 7636561, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 8, - "Name": "Inject The Venom", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 210834, - "Bytes": 6852860, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 2, - "CustomerId": 4, - "InvoiceDate": "2009-01-02T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 3.96, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 9, - "Name": "Snowballed", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 203102, - "Bytes": 6599424, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 108, - "CustomerId": 47, - "InvoiceDate": "2010-04-13T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 5.94, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 10, - "Name": "Evil Walks", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 263497, - "Bytes": 8611245, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 2, - "CustomerId": 4, - "InvoiceDate": "2009-01-02T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 3.96, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 11, - "Name": "C.O.D.", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 199836, - "Bytes": 6566314, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 12, - "Name": "Breaking The Rules", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 263288, - "Bytes": 8596840, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 2, - "CustomerId": 4, - "InvoiceDate": "2009-01-02T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 3.96, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 13, - "Name": "Night Of The Long Knives", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 205688, - "Bytes": 6706347, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 108, - "CustomerId": 47, - "InvoiceDate": "2010-04-13T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 5.94, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 14, - "Name": "Spellbound", - "AlbumId": 1, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Milliseconds": 270863, - "Bytes": 8817038, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 4, - "Title": "Let There Be Rock", - "ArtistId": 1, - "Tracks": [ - { - "TrackId": 15, - "Name": "Go Down", - "AlbumId": 4, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "AC/DC", - "Milliseconds": 331180, - "Bytes": 10847611, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 16, - "Name": "Dog Eat Dog", - "AlbumId": 4, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "AC/DC", - "Milliseconds": 215196, - "Bytes": 7032162, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 3, - "CustomerId": 8, - "InvoiceDate": "2009-01-03T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 5.94, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 17, - "Name": "Let There Be Rock", - "AlbumId": 4, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "AC/DC", - "Milliseconds": 366654, - "Bytes": 12021261, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 18, - "Name": "Bad Boy Boogie", - "AlbumId": 4, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "AC/DC", - "Milliseconds": 267728, - "Bytes": 8776140, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 19, - "Name": "Problem Child", - "AlbumId": 4, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "AC/DC", - "Milliseconds": 325041, - "Bytes": 10617116, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 20, - "Name": "Overdose", - "AlbumId": 4, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "AC/DC", - "Milliseconds": 369319, - "Bytes": 12066294, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 3, - "CustomerId": 8, - "InvoiceDate": "2009-01-03T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 5.94, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 21, - "Name": "Hell Ain't A Bad Place To Be", - "AlbumId": 4, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "AC/DC", - "Milliseconds": 254380, - "Bytes": 8331286, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 22, - "Name": "Whole Lotta Rosie", - "AlbumId": 4, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "AC/DC", - "Milliseconds": 323761, - "Bytes": 10547154, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 2, - "Name": "Accept", - "Albums": [ - { - "AlbumId": 2, - "Title": "Balls to the Wall", - "ArtistId": 2, - "Tracks": [ - { - "TrackId": 2, - "Name": "Balls to the Wall", - "AlbumId": 2, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 342562, - "Bytes": 5510424, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 1, - "CustomerId": 2, - "InvoiceDate": "2009-01-01T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 1.98, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 3, - "Title": "Restless and Wild", - "ArtistId": 2, - "Tracks": [ - { - "TrackId": 3, - "Name": "Fast As a Shark", - "AlbumId": 3, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "F. Baltes, S. Kaufman, U. Dirkscneider \u0026 W. Hoffman", - "Milliseconds": 230619, - "Bytes": 3990994, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 4, - "Name": "Restless and Wild", - "AlbumId": 3, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "F. Baltes, R.A. Smith-Diesel, S. Kaufman, U. Dirkscneider \u0026 W. Hoffman", - "Milliseconds": 252051, - "Bytes": 4331779, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 1, - "CustomerId": 2, - "InvoiceDate": "2009-01-01T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 1.98, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 5, - "Name": "Princess of the Dawn", - "AlbumId": 3, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "Deaffy \u0026 R.A. Smith-Diesel", - "Milliseconds": 375418, - "Bytes": 6290521, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 108, - "CustomerId": 47, - "InvoiceDate": "2010-04-13T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 5.94, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 3, - "Name": "Aerosmith", - "Albums": [ - { - "AlbumId": 5, - "Title": "Big Ones", - "ArtistId": 3, - "Tracks": [ - { - "TrackId": 23, - "Name": "Walk On Water", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Jack Blades, Tommy Shaw", - "Milliseconds": 295680, - "Bytes": 9719579, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 24, - "Name": "Love In An Elevator", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry", - "Milliseconds": 321828, - "Bytes": 10552051, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 3, - "CustomerId": 8, - "InvoiceDate": "2009-01-03T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 5.94, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 25, - "Name": "Rag Doll", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Jim Vallance, Holly Knight", - "Milliseconds": 264698, - "Bytes": 8675345, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 26, - "Name": "What It Takes", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "Milliseconds": 310622, - "Bytes": 10144730, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 27, - "Name": "Dude (Looks Like A Lady)", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "Milliseconds": 264855, - "Bytes": 8679940, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 28, - "Name": "Janie's Got A Gun", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Tom Hamilton", - "Milliseconds": 330736, - "Bytes": 10869391, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 3, - "CustomerId": 8, - "InvoiceDate": "2009-01-03T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 5.94, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 29, - "Name": "Cryin'", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Taylor Rhodes", - "Milliseconds": 309263, - "Bytes": 10056995, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 30, - "Name": "Amazing", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Richie Supa", - "Milliseconds": 356519, - "Bytes": 11616195, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 31, - "Name": "Blind Man", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Taylor Rhodes", - "Milliseconds": 240718, - "Bytes": 7877453, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 32, - "Name": "Deuces Are Wild", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Jim Vallance", - "Milliseconds": 215875, - "Bytes": 7074167, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 3, - "CustomerId": 8, - "InvoiceDate": "2009-01-03T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 5.94, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 33, - "Name": "The Other Side", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Jim Vallance", - "Milliseconds": 244375, - "Bytes": 7983270, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 34, - "Name": "Crazy", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "Milliseconds": 316656, - "Bytes": 10402398, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 35, - "Name": "Eat The Rich", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Jim Vallance", - "Milliseconds": 251036, - "Bytes": 8262039, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 36, - "Name": "Angel", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Desmond Child", - "Milliseconds": 307617, - "Bytes": 9989331, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 3, - "CustomerId": 8, - "InvoiceDate": "2009-01-03T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 5.94, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 37, - "Name": "Livin' On The Edge", - "AlbumId": 5, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steven Tyler, Joe Perry, Mark Hudson", - "Milliseconds": 381231, - "Bytes": 12374569, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 4, - "Name": "Alanis Morissette", - "Albums": [ - { - "AlbumId": 6, - "Title": "Jagged Little Pill", - "ArtistId": 4, - "Tracks": [ - { - "TrackId": 38, - "Name": "All I Really Want", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 284891, - "Bytes": 9375567, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 39, - "Name": "You Oughta Know", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 249234, - "Bytes": 8196916, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 40, - "Name": "Perfect", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 188133, - "Bytes": 6145404, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 41, - "Name": "Hand In My Pocket", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 221570, - "Bytes": 7224246, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 42, - "Name": "Right Through You", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 176117, - "Bytes": 5793082, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 43, - "Name": "Forgiven", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 300355, - "Bytes": 9753256, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 44, - "Name": "You Learn", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 239699, - "Bytes": 7824837, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 45, - "Name": "Head Over Feet", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 267493, - "Bytes": 8758008, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 46, - "Name": "Mary Jane", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 280607, - "Bytes": 9163588, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 47, - "Name": "Ironic", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 229825, - "Bytes": 7598866, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 48, - "Name": "Not The Doctor", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 227631, - "Bytes": 7604601, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 49, - "Name": "Wake Up", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 293485, - "Bytes": 9703359, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 50, - "Name": "You Oughta Know (Alternate)", - "AlbumId": 6, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alanis Morissette \u0026 Glenn Ballard", - "Milliseconds": 491885, - "Bytes": 16008629, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 5, - "Name": "Alice In Chains", - "Albums": [ - { - "AlbumId": 7, - "Title": "Facelift", - "ArtistId": 5, - "Tracks": [ - { - "TrackId": 51, - "Name": "We Die Young", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell", - "Milliseconds": 152084, - "Bytes": 4925362, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 52, - "Name": "Man In The Box", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell, Layne Staley", - "Milliseconds": 286641, - "Bytes": 9310272, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": null - }, - { - "TrackId": 53, - "Name": "Sea Of Sorrow", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell", - "Milliseconds": 349831, - "Bytes": 11316328, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 54, - "Name": "Bleed The Freak", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell", - "Milliseconds": 241946, - "Bytes": 7847716, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 55, - "Name": "I Can't Remember", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell, Layne Staley", - "Milliseconds": 222955, - "Bytes": 7302550, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 56, - "Name": "Love, Hate, Love", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell, Layne Staley", - "Milliseconds": 387134, - "Bytes": 12575396, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 57, - "Name": "It Ain't Like That", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell, Michael Starr, Sean Kinney", - "Milliseconds": 277577, - "Bytes": 8993793, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 58, - "Name": "Sunshine", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell", - "Milliseconds": 284969, - "Bytes": 9216057, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 59, - "Name": "Put You Down", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell", - "Milliseconds": 196231, - "Bytes": 6420530, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 60, - "Name": "Confusion", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell, Michael Starr, Layne Staley", - "Milliseconds": 344163, - "Bytes": 11183647, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 61, - "Name": "I Know Somethin (Bout You)", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell", - "Milliseconds": 261955, - "Bytes": 8497788, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 62, - "Name": "Real Thing", - "AlbumId": 7, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Cantrell, Layne Staley", - "Milliseconds": 243879, - "Bytes": 7937731, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 6, - "Name": "Ant�nio Carlos Jobim", - "Albums": [ - { - "AlbumId": 8, - "Title": "Warner 25 Anos", - "ArtistId": 6, - "Tracks": [ - { - "TrackId": 63, - "Name": "Desafinado", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 185338, - "Bytes": 5990473, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 64, - "Name": "Garota De Ipanema", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 285048, - "Bytes": 9348428, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 65, - "Name": "Samba De Uma Nota S� (One Note Samba)", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 137273, - "Bytes": 4535401, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 66, - "Name": "Por Causa De Voc�", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 169900, - "Bytes": 5536496, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 67, - "Name": "Ligia", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 251977, - "Bytes": 8226934, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 109, - "CustomerId": 53, - "InvoiceDate": "2010-04-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 8.91, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 68, - "Name": "Fotografia", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 129227, - "Bytes": 4198774, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 69, - "Name": "Dindi (Dindi)", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 253178, - "Bytes": 8149148, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 70, - "Name": "Se Todos Fossem Iguais A Voc� (Instrumental)", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 134948, - "Bytes": 4393377, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 71, - "Name": "Falando De Amor", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 219663, - "Bytes": 7121735, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 72, - "Name": "Angela", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 169508, - "Bytes": 5574957, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 73, - "Name": "Corcovado (Quiet Nights Of Quiet Stars)", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 205662, - "Bytes": 6687994, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 74, - "Name": "Outra Vez", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 126511, - "Bytes": 4110053, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 75, - "Name": "O Boto (B�to)", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 366837, - "Bytes": 12089673, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 76, - "Name": "Canta, Canta Mais", - "AlbumId": 8, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 271856, - "Bytes": 8719426, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 34, - "Title": "Chill: Brazil (Disc 2)", - "ArtistId": 6, - "Tracks": [ - { - "TrackId": 391, - "Name": "Garota De Ipanema", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 279536, - "Bytes": 9141343, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 392, - "Name": "Tim Tim Por Tim Tim", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 213237, - "Bytes": 7143328, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 393, - "Name": "Tarde Em Itapo�", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 313704, - "Bytes": 10344491, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 328, - "CustomerId": 15, - "InvoiceDate": "2012-12-15T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 0.99, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 394, - "Name": "Tanto Tempo", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 170292, - "Bytes": 5572240, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 329, - "CustomerId": 16, - "InvoiceDate": "2012-12-28T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 1.98, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 395, - "Name": "Eu Vim Da Bahia - Live", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 157988, - "Bytes": 5115428, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 329, - "CustomerId": 16, - "InvoiceDate": "2012-12-28T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 1.98, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 396, - "Name": "Al� Al� Marciano", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 238106, - "Bytes": 8013065, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 397, - "Name": "Linha Do Horizonte", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 279484, - "Bytes": 9275929, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 330, - "CustomerId": 18, - "InvoiceDate": "2012-12-28T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 1.98, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 398, - "Name": "Only A Dream In Rio", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 371356, - "Bytes": 12192989, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 399, - "Name": "Abrir A Porta", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 271960, - "Bytes": 8991141, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 330, - "CustomerId": 18, - "InvoiceDate": "2012-12-28T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 1.98, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 400, - "Name": "Alice", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 165982, - "Bytes": 5594341, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 401, - "Name": "Momentos Que Marcam", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 280137, - "Bytes": 9313740, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 331, - "CustomerId": 20, - "InvoiceDate": "2012-12-29T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 3.96, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 402, - "Name": "Um Jantar Pra Dois", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 237714, - "Bytes": 7819755, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 403, - "Name": "Bumbo Da Mangueira", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 270158, - "Bytes": 9073350, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 331, - "CustomerId": 20, - "InvoiceDate": "2012-12-29T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 3.96, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 404, - "Name": "Mr Funk Samba", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 213890, - "Bytes": 7102545, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 405, - "Name": "Santo Antonio", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 162716, - "Bytes": 5492069, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 331, - "CustomerId": 20, - "InvoiceDate": "2012-12-29T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 3.96, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 406, - "Name": "Por Voc�", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 205557, - "Bytes": 6792493, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 407, - "Name": "S� Tinha De Ser Com Voc�", - "AlbumId": 34, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "V�rios", - "Milliseconds": 389642, - "Bytes": 13085596, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 331, - "CustomerId": 20, - "InvoiceDate": "2012-12-29T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 3.96, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 7, - "Name": "Apocalyptica", - "Albums": [ - { - "AlbumId": 9, - "Title": "Plays Metallica By Four Cellos", - "ArtistId": 7, - "Tracks": [ - { - "TrackId": 77, - "Name": "Enter Sandman", - "AlbumId": 9, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Apocalyptica", - "Milliseconds": 221701, - "Bytes": 7286305, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 78, - "Name": "Master Of Puppets", - "AlbumId": 9, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Apocalyptica", - "Milliseconds": 436453, - "Bytes": 14375310, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 79, - "Name": "Harvester Of Sorrow", - "AlbumId": 9, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Apocalyptica", - "Milliseconds": 374543, - "Bytes": 12372536, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 80, - "Name": "The Unforgiven", - "AlbumId": 9, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Apocalyptica", - "Milliseconds": 322925, - "Bytes": 10422447, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 81, - "Name": "Sad But True", - "AlbumId": 9, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Apocalyptica", - "Milliseconds": 288208, - "Bytes": 9405526, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 82, - "Name": "Creeping Death", - "AlbumId": 9, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Apocalyptica", - "Milliseconds": 308035, - "Bytes": 10110980, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 83, - "Name": "Wherever I May Roam", - "AlbumId": 9, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Apocalyptica", - "Milliseconds": 369345, - "Bytes": 12033110, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 84, - "Name": "Welcome Home (Sanitarium)", - "AlbumId": 9, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Apocalyptica", - "Milliseconds": 350197, - "Bytes": 11406431, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 8, - "Name": "Audioslave", - "Albums": [ - { - "AlbumId": 10, - "Title": "Audioslave", - "ArtistId": 8, - "Tracks": [ - { - "TrackId": 85, - "Name": "Cochise", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 222380, - "Bytes": 5339931, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 86, - "Name": "Show Me How to Live", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 277890, - "Bytes": 6672176, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 87, - "Name": "Gasoline", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 279457, - "Bytes": 6709793, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 88, - "Name": "What You Are", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 249391, - "Bytes": 5988186, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 89, - "Name": "Like a Stone", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 294034, - "Bytes": 7059624, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 90, - "Name": "Set It Off", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 263262, - "Bytes": 6321091, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 4, - "CustomerId": 14, - "InvoiceDate": "2009-01-06T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 8.91, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 91, - "Name": "Shadow on the Sun", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 343457, - "Bytes": 8245793, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 92, - "Name": "I am the Highway", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 334942, - "Bytes": 8041411, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 93, - "Name": "Exploder", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 206053, - "Bytes": 4948095, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 94, - "Name": "Hypnotize", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 206628, - "Bytes": 4961887, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 95, - "Name": "Bring'em Back Alive", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 329534, - "Bytes": 7911634, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 96, - "Name": "Light My Way", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 303595, - "Bytes": 7289084, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 97, - "Name": "Getaway Car", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 299598, - "Bytes": 7193162, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 98, - "Name": "The Last Remaining Light", - "AlbumId": 10, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Audioslave/Chris Cornell", - "Milliseconds": 317492, - "Bytes": 7622615, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 11, - "Title": "Out Of Exile", - "ArtistId": 8, - "Tracks": [ - { - "TrackId": 99, - "Name": "Your Time Has Come", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 255529, - "Bytes": 8273592, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 100, - "Name": "Out Of Exile", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 291291, - "Bytes": 9506571, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 101, - "Name": "Be Yourself", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 279484, - "Bytes": 9106160, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 102, - "Name": "Doesn't Remind Me", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 255869, - "Bytes": 8357387, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 103, - "Name": "Drown Me Slowly", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 233691, - "Bytes": 7609178, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 104, - "Name": "Heaven's Dead", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 276688, - "Bytes": 9006158, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 105, - "Name": "The Worm", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 237714, - "Bytes": 7710800, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 106, - "Name": "Man Or Animal", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 233195, - "Bytes": 7542942, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 107, - "Name": "Yesterday To Tomorrow", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 273763, - "Bytes": 8944205, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 108, - "Name": "Dandelion", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 278125, - "Bytes": 9003592, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 109, - "Name": "#1 Zero", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 299102, - "Bytes": 9731988, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 110, - "Name": "The Curse", - "AlbumId": 11, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Cornell, Commerford, Morello, Wilk", - "Milliseconds": 309786, - "Bytes": 10029406, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 271, - "Title": "Revelations", - "ArtistId": 8, - "Tracks": [ - { - "TrackId": 3389, - "Name": "Revelations", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 252376, - "Bytes": 4111051, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3390, - "Name": "One and the Same", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 217732, - "Bytes": 3559040, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3391, - "Name": "Sound of a Gun", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 260154, - "Bytes": 4234990, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3392, - "Name": "Until We Fall", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 230758, - "Bytes": 3766605, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3393, - "Name": "Original Fire", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 218916, - "Bytes": 3577821, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3394, - "Name": "Broken City", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 228366, - "Bytes": 3728955, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3395, - "Name": "Somedays", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 213831, - "Bytes": 3497176, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3396, - "Name": "Shape of Things to Come", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 274597, - "Bytes": 4465399, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3397, - "Name": "Jewel of the Summertime", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 233242, - "Bytes": 3806103, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3398, - "Name": "Wide Awake", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 266308, - "Bytes": 4333050, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3399, - "Name": "Nothing Left to Say But Goodbye", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 213041, - "Bytes": 3484335, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3400, - "Name": "Moth", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 298049, - "Bytes": 4838884, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3401, - "Name": "Show Me How to Live (Live at the Quart Festival)", - "AlbumId": 271, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 301974, - "Bytes": 4901540, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3402, - "Name": "Band Members Discuss Tracks from \"Revelations\"", - "AlbumId": 271, - "MediaTypeId": 3, - "GenreId": 23, - "Composer": null, - "Milliseconds": 294294, - "Bytes": 61118891, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 9, - "Name": "Music Videos" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 9, - "Name": "BackBeat", - "Albums": [ - { - "AlbumId": 12, - "Title": "BackBeat Soundtrack", - "ArtistId": 9, - "Tracks": [ - { - "TrackId": 111, - "Name": "Money", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Berry Gordy, Jr./Janie Bradford", - "Milliseconds": 147591, - "Bytes": 2365897, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 112, - "Name": "Long Tall Sally", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Enotris Johnson/Little Richard/Robert \"Bumps\" Blackwell", - "Milliseconds": 106396, - "Bytes": 1707084, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 113, - "Name": "Bad Boy", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Larry Williams", - "Milliseconds": 116088, - "Bytes": 1862126, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 114, - "Name": "Twist And Shout", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Bert Russell/Phil Medley", - "Milliseconds": 161123, - "Bytes": 2582553, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 115, - "Name": "Please Mr. Postman", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Brian Holland/Freddie Gorman/Georgia Dobbins/Robert Bateman/William Garrett", - "Milliseconds": 137639, - "Bytes": 2206986, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 116, - "Name": "C'Mon Everybody", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Eddie Cochran/Jerry Capehart", - "Milliseconds": 140199, - "Bytes": 2247846, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 117, - "Name": "Rock 'N' Roll Music", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Chuck Berry", - "Milliseconds": 141923, - "Bytes": 2276788, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 118, - "Name": "Slow Down", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Larry Williams", - "Milliseconds": 163265, - "Bytes": 2616981, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 119, - "Name": "Roadrunner", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Bo Diddley", - "Milliseconds": 143595, - "Bytes": 2301989, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 120, - "Name": "Carol", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Chuck Berry", - "Milliseconds": 143830, - "Bytes": 2306019, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 121, - "Name": "Good Golly Miss Molly", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Little Richard", - "Milliseconds": 106266, - "Bytes": 1704918, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 122, - "Name": "20 Flight Rock", - "AlbumId": 12, - "MediaTypeId": 1, - "GenreId": 5, - "Composer": "Ned Fairchild", - "Milliseconds": 107807, - "Bytes": 1299960, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 5, - "Name": "Rock And Roll" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 10, - "Name": "Billy Cobham", - "Albums": [ - { - "AlbumId": 13, - "Title": "The Best Of Billy Cobham", - "ArtistId": 10, - "Tracks": [ - { - "TrackId": 123, - "Name": "Quadrant", - "AlbumId": 13, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Billy Cobham", - "Milliseconds": 261851, - "Bytes": 8538199, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 124, - "Name": "Snoopy's search-Red baron", - "AlbumId": 13, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Billy Cobham", - "Milliseconds": 456071, - "Bytes": 15075616, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 125, - "Name": "Spanish moss-\"A sound portrait\"-Spanish moss", - "AlbumId": 13, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Billy Cobham", - "Milliseconds": 248084, - "Bytes": 8217867, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 126, - "Name": "Moon germs", - "AlbumId": 13, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Billy Cobham", - "Milliseconds": 294060, - "Bytes": 9714812, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 127, - "Name": "Stratus", - "AlbumId": 13, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Billy Cobham", - "Milliseconds": 582086, - "Bytes": 19115680, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 128, - "Name": "The pleasant pheasant", - "AlbumId": 13, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Billy Cobham", - "Milliseconds": 318066, - "Bytes": 10630578, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 129, - "Name": "Solo-Panhandler", - "AlbumId": 13, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Billy Cobham", - "Milliseconds": 246151, - "Bytes": 8230661, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 130, - "Name": "Do what cha wanna", - "AlbumId": 13, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "George Duke", - "Milliseconds": 274155, - "Bytes": 9018565, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 11, - "Name": "Black Label Society", - "Albums": [ - { - "AlbumId": 14, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]", - "ArtistId": 11, - "Tracks": [ - { - "TrackId": 131, - "Name": "Intro/ Low Down", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 323683, - "Bytes": 10642901, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 132, - "Name": "13 Years Of Grief", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 246987, - "Bytes": 8137421, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 133, - "Name": "Stronger Than Death", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 300747, - "Bytes": 9869647, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 134, - "Name": "All For You", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 235833, - "Bytes": 7726948, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 135, - "Name": "Super Terrorizer", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 319373, - "Bytes": 10513905, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 136, - "Name": "Phoney Smile Fake Hellos", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 273606, - "Bytes": 9011701, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 137, - "Name": "Lost My Better Half", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 284081, - "Bytes": 9355309, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 138, - "Name": "Bored To Tears", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 247327, - "Bytes": 8130090, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 139, - "Name": "A.N.D.R.O.T.A.Z.", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 266266, - "Bytes": 8574746, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 140, - "Name": "Born To Booze", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 282122, - "Bytes": 9257358, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 141, - "Name": "World Of Trouble", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 359157, - "Bytes": 11820932, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 142, - "Name": "No More Tears", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 555075, - "Bytes": 18041629, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 143, - "Name": "The Begining... At Last", - "AlbumId": 14, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 365662, - "Bytes": 11965109, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 15, - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]", - "ArtistId": 11, - "Tracks": [ - { - "TrackId": 144, - "Name": "Heart Of Gold", - "AlbumId": 15, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 194873, - "Bytes": 6417460, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 145, - "Name": "Snowblind", - "AlbumId": 15, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 420022, - "Bytes": 13842549, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 146, - "Name": "Like A Bird", - "AlbumId": 15, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 276532, - "Bytes": 9115657, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 147, - "Name": "Blood In The Wall", - "AlbumId": 15, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 284368, - "Bytes": 9359475, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 320, - "CustomerId": 22, - "InvoiceDate": "2012-11-06T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 13.86, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 148, - "Name": "The Beginning...At Last", - "AlbumId": 15, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 271960, - "Bytes": 8975814, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 12, - "Name": "Black Sabbath", - "Albums": [ - { - "AlbumId": 16, - "Title": "Black Sabbath", - "ArtistId": 12, - "Tracks": [ - { - "TrackId": 149, - "Name": "Black Sabbath", - "AlbumId": 16, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 382066, - "Bytes": 12440200, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 150, - "Name": "The Wizard", - "AlbumId": 16, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 264829, - "Bytes": 8646737, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 151, - "Name": "Behind The Wall Of Sleep", - "AlbumId": 16, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 217573, - "Bytes": 7169049, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 152, - "Name": "N.I.B.", - "AlbumId": 16, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 368770, - "Bytes": 12029390, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 153, - "Name": "Evil Woman", - "AlbumId": 16, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 204930, - "Bytes": 6655170, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 154, - "Name": "Sleeping Village", - "AlbumId": 16, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 644571, - "Bytes": 21128525, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 155, - "Name": "Warning", - "AlbumId": 16, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 212062, - "Bytes": 6893363, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 17, - "Title": "Black Sabbath Vol. 4 (Remaster)", - "ArtistId": 12, - "Tracks": [ - { - "TrackId": 156, - "Name": "Wheels Of Confusion / The Straightener", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 494524, - "Bytes": 16065830, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 157, - "Name": "Tomorrow's Dream", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 192496, - "Bytes": 6252071, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 158, - "Name": "Changes", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 286275, - "Bytes": 9175517, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 159, - "Name": "FX", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 103157, - "Bytes": 3331776, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 160, - "Name": "Supernaut", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 285779, - "Bytes": 9245971, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": null - }, - { - "TrackId": 161, - "Name": "Snowblind", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 331676, - "Bytes": 10813386, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 321, - "CustomerId": 36, - "InvoiceDate": "2012-11-14T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 0.99, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 162, - "Name": "Cornucopia", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 234814, - "Bytes": 7653880, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 322, - "CustomerId": 37, - "InvoiceDate": "2012-11-27T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 1.98, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 163, - "Name": "Laguna Sunrise", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 173087, - "Bytes": 5671374, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 322, - "CustomerId": 37, - "InvoiceDate": "2012-11-27T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 1.98, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 164, - "Name": "St. Vitus Dance", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 149655, - "Bytes": 4884969, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 165, - "Name": "Under The Sun/Every Day Comes and Goes", - "AlbumId": 17, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 350458, - "Bytes": 11360486, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 323, - "CustomerId": 39, - "InvoiceDate": "2012-11-27T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 1.98, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 13, - "Name": "Body Count", - "Albums": [ - { - "AlbumId": 18, - "Title": "Body Count", - "ArtistId": 13, - "Tracks": [ - { - "TrackId": 166, - "Name": "Smoked Pork", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 47333, - "Bytes": 1549074, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 167, - "Name": "Body Count's In The House", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 204251, - "Bytes": 6715413, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 323, - "CustomerId": 39, - "InvoiceDate": "2012-11-27T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 1.98, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 168, - "Name": "Now Sports", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 4884, - "Bytes": 161266, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 169, - "Name": "Body Count", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 317936, - "Bytes": 10489139, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 324, - "CustomerId": 41, - "InvoiceDate": "2012-11-28T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 3.96, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 170, - "Name": "A Statistic", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 6373, - "Bytes": 211997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 215, - "CustomerId": 42, - "InvoiceDate": "2011-07-30T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 13.86, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 171, - "Name": "Bowels Of The Devil", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 223216, - "Bytes": 7324125, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 324, - "CustomerId": 41, - "InvoiceDate": "2012-11-28T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 3.96, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 172, - "Name": "The Real Problem", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 11650, - "Bytes": 387360, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 173, - "Name": "KKK Bitch", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 173008, - "Bytes": 5709631, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 324, - "CustomerId": 41, - "InvoiceDate": "2012-11-28T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 3.96, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 174, - "Name": "D Note", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 95738, - "Bytes": 3067064, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 175, - "Name": "Voodoo", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 300721, - "Bytes": 9875962, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 324, - "CustomerId": 41, - "InvoiceDate": "2012-11-28T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 3.96, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 176, - "Name": "The Winner Loses", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 392254, - "Bytes": 12843821, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 177, - "Name": "There Goes The Neighborhood", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 350171, - "Bytes": 11443471, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 178, - "Name": "Oprah", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 6635, - "Bytes": 224313, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 179, - "Name": "Evil Dick", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 239020, - "Bytes": 7828873, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 325, - "CustomerId": 45, - "InvoiceDate": "2012-11-29T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 5.94, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 180, - "Name": "Body Count Anthem", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 166426, - "Bytes": 5463690, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 181, - "Name": "Momma's Gotta Die Tonight", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 371539, - "Bytes": 12122946, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 182, - "Name": "Freedom Of Speech", - "AlbumId": 18, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 281234, - "Bytes": 9337917, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 14, - "Name": "Bruce Dickinson", - "Albums": [ - { - "AlbumId": 19, - "Title": "Chemical Wedding", - "ArtistId": 14, - "Tracks": [ - { - "TrackId": 183, - "Name": "King In Crimson", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Roy Z", - "Milliseconds": 283167, - "Bytes": 9218499, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 325, - "CustomerId": 45, - "InvoiceDate": "2012-11-29T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 5.94, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 184, - "Name": "Chemical Wedding", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Roy Z", - "Milliseconds": 246177, - "Bytes": 8022764, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 216, - "CustomerId": 56, - "InvoiceDate": "2011-08-07T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 0.99, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 185, - "Name": "The Tower", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Roy Z", - "Milliseconds": 285257, - "Bytes": 9435693, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 217, - "CustomerId": 57, - "InvoiceDate": "2011-08-20T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 186, - "Name": "Killing Floor", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith", - "Milliseconds": 269557, - "Bytes": 8854240, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 217, - "CustomerId": 57, - "InvoiceDate": "2011-08-20T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 187, - "Name": "Book Of Thel", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Eddie Casillas/Roy Z", - "Milliseconds": 494393, - "Bytes": 16034404, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 325, - "CustomerId": 45, - "InvoiceDate": "2012-11-29T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 5.94, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 188, - "Name": "Gates Of Urizen", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Roy Z", - "Milliseconds": 265351, - "Bytes": 8627004, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 218, - "CustomerId": 59, - "InvoiceDate": "2011-08-20T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 1.98, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 189, - "Name": "Jerusalem", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Roy Z", - "Milliseconds": 402390, - "Bytes": 13194463, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 190, - "Name": "Trupets Of Jericho", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Roy Z", - "Milliseconds": 359131, - "Bytes": 11820908, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 218, - "CustomerId": 59, - "InvoiceDate": "2011-08-20T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 1.98, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 191, - "Name": "Machine Men", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith", - "Milliseconds": 341655, - "Bytes": 11138147, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 325, - "CustomerId": 45, - "InvoiceDate": "2012-11-29T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 5.94, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 192, - "Name": "The Alchemist", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Roy Z", - "Milliseconds": 509413, - "Bytes": 16545657, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 219, - "CustomerId": 2, - "InvoiceDate": "2011-08-21T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 3.96, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 193, - "Name": "Realword", - "AlbumId": 19, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Roy Z", - "Milliseconds": 237531, - "Bytes": 7802095, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 110, - "CustomerId": 3, - "InvoiceDate": "2010-04-21T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 13.86, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 15, - "Name": "Buddy Guy", - "Albums": [ - { - "AlbumId": 20, - "Title": "The Best Of Buddy Guy - The Millenium Collection", - "ArtistId": 15, - "Tracks": [ - { - "TrackId": 194, - "Name": "First Time I Met The Blues", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Eurreal Montgomery", - "Milliseconds": 140434, - "Bytes": 4604995, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 219, - "CustomerId": 2, - "InvoiceDate": "2011-08-21T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 3.96, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 195, - "Name": "Let Me Love You Baby", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Willie Dixon", - "Milliseconds": 175386, - "Bytes": 5716994, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 325, - "CustomerId": 45, - "InvoiceDate": "2012-11-29T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 5.94, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 196, - "Name": "Stone Crazy", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Buddy Guy", - "Milliseconds": 433397, - "Bytes": 14184984, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 219, - "CustomerId": 2, - "InvoiceDate": "2011-08-21T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 3.96, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 197, - "Name": "Pretty Baby", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Willie Dixon", - "Milliseconds": 237662, - "Bytes": 7848282, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 198, - "Name": "When My Left Eye Jumps", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Al Perkins/Willie Dixon", - "Milliseconds": 235311, - "Bytes": 7685363, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 219, - "CustomerId": 2, - "InvoiceDate": "2011-08-21T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 3.96, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 199, - "Name": "Leave My Girl Alone", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Buddy Guy", - "Milliseconds": 204721, - "Bytes": 6859518, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 325, - "CustomerId": 45, - "InvoiceDate": "2012-11-29T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 5.94, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 200, - "Name": "She Suits Me To A Tee", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Buddy Guy", - "Milliseconds": 136803, - "Bytes": 4456321, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 201, - "Name": "Keep It To Myself (Aka Keep It To Yourself)", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Sonny Boy Williamson [I]", - "Milliseconds": 166060, - "Bytes": 5487056, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 202, - "Name": "My Time After Awhile", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Robert Geddins/Ron Badger/Sheldon Feinberg", - "Milliseconds": 182491, - "Bytes": 6022698, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 220, - "CustomerId": 6, - "InvoiceDate": "2011-08-22T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 5.94, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 203, - "Name": "Too Many Ways (Alternate)", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Willie Dixon", - "Milliseconds": 135053, - "Bytes": 4459946, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 204, - "Name": "Talkin' 'Bout Women Obviously", - "AlbumId": 20, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Amos Blakemore/Buddy Guy", - "Milliseconds": 589531, - "Bytes": 19161377, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 16, - "Name": "Caetano Veloso", - "Albums": [ - { - "AlbumId": 21, - "Title": "Prenda Minha", - "ArtistId": 16, - "Tracks": [ - { - "TrackId": 205, - "Name": "Jorge Da Capad�cia", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Jorge Ben", - "Milliseconds": 177397, - "Bytes": 5842196, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 206, - "Name": "Prenda Minha", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tradicional", - "Milliseconds": 99369, - "Bytes": 3225364, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 220, - "CustomerId": 6, - "InvoiceDate": "2011-08-22T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 5.94, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 207, - "Name": "Medita��o", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tom Jobim - Newton Mendo�a", - "Milliseconds": 148793, - "Bytes": 4865597, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 111, - "CustomerId": 17, - "InvoiceDate": "2010-04-29T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 0.99, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 208, - "Name": "Terra", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 482429, - "Bytes": 15889054, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 112, - "CustomerId": 18, - "InvoiceDate": "2010-05-12T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 1.98, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 209, - "Name": "Eclipse Oculto", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 221936, - "Bytes": 7382703, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 112, - "CustomerId": 18, - "InvoiceDate": "2010-05-12T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 1.98, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 210, - "Name": "Texto \"Verdade Tropical\"", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 84088, - "Bytes": 2752161, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 220, - "CustomerId": 6, - "InvoiceDate": "2011-08-22T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 5.94, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 211, - "Name": "Bem Devagar", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 133172, - "Bytes": 4333651, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 113, - "CustomerId": 20, - "InvoiceDate": "2010-05-12T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 1.98, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 212, - "Name": "Dr�o", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 156264, - "Bytes": 5065932, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 213, - "Name": "Saudosismo", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 144326, - "Bytes": 4726981, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 113, - "CustomerId": 20, - "InvoiceDate": "2010-05-12T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 1.98, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 214, - "Name": "Carolina", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Buarque", - "Milliseconds": 181812, - "Bytes": 5924159, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 220, - "CustomerId": 6, - "InvoiceDate": "2011-08-22T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 5.94, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 215, - "Name": "Sozinho", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Peninha", - "Milliseconds": 190589, - "Bytes": 6253200, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 114, - "CustomerId": 22, - "InvoiceDate": "2010-05-13T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 3.96, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 216, - "Name": "Esse Cara", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 223111, - "Bytes": 7217126, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 5, - "CustomerId": 23, - "InvoiceDate": "2009-01-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 13.86, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 217, - "Name": "Mel", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso - Waly Salom�o", - "Milliseconds": 294765, - "Bytes": 9854062, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 114, - "CustomerId": 22, - "InvoiceDate": "2010-05-13T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 3.96, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 218, - "Name": "Linha Do Equador", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso - Djavan", - "Milliseconds": 299337, - "Bytes": 10003747, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 220, - "CustomerId": 6, - "InvoiceDate": "2011-08-22T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 5.94, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 219, - "Name": "Odara", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 141270, - "Bytes": 4704104, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 114, - "CustomerId": 22, - "InvoiceDate": "2010-05-13T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 3.96, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 220, - "Name": "A Luz De Tieta", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 251742, - "Bytes": 8507446, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 221, - "Name": "Atr�s Da Verd-E-Rosa S� N�o Vai Quem J� Morreu", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "David Corr�a - Paulinho Carvalho - Carlos Sena - Bira do Ponto", - "Milliseconds": 307252, - "Bytes": 10364247, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 114, - "CustomerId": 22, - "InvoiceDate": "2010-05-13T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 3.96, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 222, - "Name": "Vida Boa", - "AlbumId": 21, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Fausto Nilo - Armandinho", - "Milliseconds": 281730, - "Bytes": 9411272, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 220, - "CustomerId": 6, - "InvoiceDate": "2011-08-22T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 5.94, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 22, - "Title": "Sozinho Remix Ao Vivo", - "ArtistId": 16, - "Tracks": [ - { - "TrackId": 223, - "Name": "Sozinho (Hitmakers Classic Mix)", - "AlbumId": 22, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 436636, - "Bytes": 14462072, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 224, - "Name": "Sozinho (Hitmakers Classic Radio Edit)", - "AlbumId": 22, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 195004, - "Bytes": 6455134, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 225, - "Name": "Sozinho (Ca�drum 'n' Bass)", - "AlbumId": 22, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 328071, - "Bytes": 10975007, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 115, - "CustomerId": 26, - "InvoiceDate": "2010-05-14T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 5.94, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 17, - "Name": "Chico Buarque", - "Albums": [ - { - "AlbumId": 23, - "Title": "Minha Historia", - "ArtistId": 17, - "Tracks": [ - { - "TrackId": 226, - "Name": "Carolina", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 163056, - "Bytes": 5375395, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 227, - "Name": "Essa Mo�a Ta Diferente", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 167235, - "Bytes": 5568574, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 228, - "Name": "Vai Passar", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 369763, - "Bytes": 12359161, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 229, - "Name": "Samba De Orly", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 162429, - "Bytes": 5431854, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 115, - "CustomerId": 26, - "InvoiceDate": "2010-05-14T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 5.94, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 230, - "Name": "Bye, Bye Brasil", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 283402, - "Bytes": 9499590, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 6, - "CustomerId": 37, - "InvoiceDate": "2009-01-19T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 0.99, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 231, - "Name": "Atras Da Porta", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 189675, - "Bytes": 6132843, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 7, - "CustomerId": 38, - "InvoiceDate": "2009-02-01T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 1.98, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 232, - "Name": "Tatuagem", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 172120, - "Bytes": 5645703, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 7, - "CustomerId": 38, - "InvoiceDate": "2009-02-01T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 1.98, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 233, - "Name": "O Que Ser� (� Flor Da Terra)", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 167288, - "Bytes": 5574848, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 115, - "CustomerId": 26, - "InvoiceDate": "2010-05-14T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 5.94, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 234, - "Name": "Morena De Angola", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 186801, - "Bytes": 6373932, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 8, - "CustomerId": 40, - "InvoiceDate": "2009-02-01T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 1.98, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 235, - "Name": "Apesar De Voc�", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 234501, - "Bytes": 7886937, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 236, - "Name": "A Banda", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 132493, - "Bytes": 4349539, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 8, - "CustomerId": 40, - "InvoiceDate": "2009-02-01T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 1.98, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 237, - "Name": "Minha Historia", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 182256, - "Bytes": 6029673, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 115, - "CustomerId": 26, - "InvoiceDate": "2010-05-14T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 5.94, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 238, - "Name": "Com A��car E Com Afeto", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 175386, - "Bytes": 5846442, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 9, - "CustomerId": 42, - "InvoiceDate": "2009-02-02T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 3.96, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 239, - "Name": "Brejo Da Cruz", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 214099, - "Bytes": 7270749, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 240, - "Name": "Meu Caro Amigo", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 260257, - "Bytes": 8778172, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 9, - "CustomerId": 42, - "InvoiceDate": "2009-02-02T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 3.96, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 241, - "Name": "Geni E O Zepelim", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 317570, - "Bytes": 10342226, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 115, - "CustomerId": 26, - "InvoiceDate": "2010-05-14T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 5.94, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 242, - "Name": "Trocando Em Mi�dos", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 169717, - "Bytes": 5461468, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 9, - "CustomerId": 42, - "InvoiceDate": "2009-02-02T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 3.96, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 243, - "Name": "Vai Trabalhar Vagabundo", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 139154, - "Bytes": 4693941, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 244, - "Name": "Gota D'�gua", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 153208, - "Bytes": 5074189, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 9, - "CustomerId": 42, - "InvoiceDate": "2009-02-02T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 3.96, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 245, - "Name": "Constru��o / Deus Lhe Pague", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 383059, - "Bytes": 12675305, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 115, - "CustomerId": 26, - "InvoiceDate": "2010-05-14T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 5.94, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 515, - "Name": "Meia-Lua Inteira", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 222093, - "Bytes": 7466288, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 516, - "Name": "Voce e Linda", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 242938, - "Bytes": 8050268, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 517, - "Name": "Um Indio", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 195944, - "Bytes": 6453213, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 518, - "Name": "Podres Poderes", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 259761, - "Bytes": 8622495, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 519, - "Name": "Voce Nao Entende Nada - Cotidiano", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 421982, - "Bytes": 13885612, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 520, - "Name": "O Estrangeiro", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 374700, - "Bytes": 12472890, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 521, - "Name": "Menino Do Rio", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 147670, - "Bytes": 4862277, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 522, - "Name": "Qualquer Coisa", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 193410, - "Bytes": 6372433, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 523, - "Name": "Sampa", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 185051, - "Bytes": 6151831, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 524, - "Name": "Queixa", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 299676, - "Bytes": 9953962, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 525, - "Name": "O Leaozinho", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 184398, - "Bytes": 6098150, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 526, - "Name": "Fora Da Ordem", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 354011, - "Bytes": 11746781, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 527, - "Name": "Terra", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 401319, - "Bytes": 13224055, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 528, - "Name": "Alegria, Alegria", - "AlbumId": 23, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 169221, - "Bytes": 5497025, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 18, - "Name": "Chico Science \u0026 Na��o Zumbi", - "Albums": [ - { - "AlbumId": 24, - "Title": "Afrociberdelia", - "ArtistId": 18, - "Tracks": [ - { - "TrackId": 246, - "Name": "Mateus Enter", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 33149, - "Bytes": 1103013, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 247, - "Name": "O Cidad�o Do Mundo", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 200933, - "Bytes": 6724966, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 248, - "Name": "Etnia", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 152555, - "Bytes": 5061413, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 10, - "CustomerId": 46, - "InvoiceDate": "2009-02-03T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 249, - "Name": "Quilombo Groove [Instrumental]", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 151823, - "Bytes": 5042447, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 250, - "Name": "Mac�", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 249600, - "Bytes": 8253934, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 251, - "Name": "Um Passeio No Mundo Livre", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 240091, - "Bytes": 7984291, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 252, - "Name": "Samba Do Lado", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 227317, - "Bytes": 7541688, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 10, - "CustomerId": 46, - "InvoiceDate": "2009-02-03T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 253, - "Name": "Maracatu At�mico", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 284264, - "Bytes": 9670057, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 326, - "CustomerId": 51, - "InvoiceDate": "2012-12-02T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 8.91, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 254, - "Name": "O Encontro De Isaac Asimov Com Santos Dumont No C�u", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 99108, - "Bytes": 3240816, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 255, - "Name": "Corpo De Lama", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 232672, - "Bytes": 7714954, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 256, - "Name": "Sobremesa", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 240091, - "Bytes": 7960868, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 10, - "CustomerId": 46, - "InvoiceDate": "2009-02-03T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 257, - "Name": "Manguetown", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 194560, - "Bytes": 6475159, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 258, - "Name": "Um Sat�lite Na Cabe�a", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 126615, - "Bytes": 4272821, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 259, - "Name": "Bai�o Ambiental [Instrumental]", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 152659, - "Bytes": 5198539, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 260, - "Name": "Sangue De Bairro", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 132231, - "Bytes": 4415557, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 10, - "CustomerId": 46, - "InvoiceDate": "2009-02-03T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 261, - "Name": "Enquanto O Mundo Explode", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 88764, - "Bytes": 2968650, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 262, - "Name": "Interlude Zumbi", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 71627, - "Bytes": 2408550, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 263, - "Name": "Crian�a De Domingo", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 208222, - "Bytes": 6984813, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 264, - "Name": "Amor De Muito", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 175333, - "Bytes": 5881293, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 10, - "CustomerId": 46, - "InvoiceDate": "2009-02-03T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 265, - "Name": "Samidarish [Instrumental]", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 272431, - "Bytes": 8911641, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 266, - "Name": "Maracatu At�mico [Atomic Version]", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 273084, - "Bytes": 9019677, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 267, - "Name": "Maracatu At�mico [Ragga Mix]", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 210155, - "Bytes": 6986421, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 268, - "Name": "Maracatu At�mico [Trip Hop]", - "AlbumId": 24, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science", - "Milliseconds": 221492, - "Bytes": 7380787, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 10, - "CustomerId": 46, - "InvoiceDate": "2009-02-03T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 25, - "Title": "Da Lama Ao Caos", - "ArtistId": 18, - "Tracks": [ - { - "TrackId": 269, - "Name": "Banditismo Por Uma Questa", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 307095, - "Bytes": 10251097, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 270, - "Name": "Banditismo Por Uma Questa", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 243644, - "Bytes": 8147224, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 271, - "Name": "Rios Pontes \u0026 Overdrives", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 286720, - "Bytes": 9659152, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 272, - "Name": "Cidade", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 216346, - "Bytes": 7241817, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 273, - "Name": "Praiera", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 183640, - "Bytes": 6172781, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 274, - "Name": "Samba Makossa", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 271856, - "Bytes": 9095410, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 275, - "Name": "Da Lama Ao Caos", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 251559, - "Bytes": 8378065, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 276, - "Name": "Maracatu De Tiro Certeiro", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 88868, - "Bytes": 2901397, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 221, - "CustomerId": 12, - "InvoiceDate": "2011-08-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 8.91, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 277, - "Name": "Salustiano Song", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 215405, - "Bytes": 7183969, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 278, - "Name": "Antene Se", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 248372, - "Bytes": 8253618, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 279, - "Name": "Risoflora", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 105586, - "Bytes": 3536938, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 280, - "Name": "Lixo Do Mangue", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 193253, - "Bytes": 6534200, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 281, - "Name": "Computadores Fazem Arte", - "AlbumId": 25, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 404323, - "Bytes": 13702771, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 19, - "Name": "Cidade Negra", - "Albums": [ - { - "AlbumId": 26, - "Title": "Ac�stico MTV [Live]", - "ArtistId": 19, - "Tracks": [ - { - "TrackId": 282, - "Name": "Girassol", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino Farias/Da Gama/Laz�o/Pedro Luis/Toni Garrido", - "Milliseconds": 249808, - "Bytes": 8327676, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 283, - "Name": "A Sombra Da Maldade", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Da Gama/Toni Garrido", - "Milliseconds": 230922, - "Bytes": 7697230, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 284, - "Name": "Johnny B. Goode", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Chuck Berry", - "Milliseconds": 254615, - "Bytes": 8505985, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 285, - "Name": "Soldado Da Paz", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Herbert Vianna", - "Milliseconds": 194220, - "Bytes": 6455080, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 286, - "Name": "Firmamento", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino Farias/Da Gama/Henry Lawes/Laz�o/Toni Garrido/Winston Foser-Vers", - "Milliseconds": 222145, - "Bytes": 7402658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 287, - "Name": "Extra", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Gilberto Gil", - "Milliseconds": 304352, - "Bytes": 10078050, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 288, - "Name": "O Er�", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bernardo Vilhena/Bino Farias/Da Gama/Laz�o/Toni Garrido", - "Milliseconds": 236382, - "Bytes": 7866924, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 289, - "Name": "Podes Crer", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino Farias/Da Gama/Laz�o/Toni Garrido", - "Milliseconds": 232280, - "Bytes": 7747747, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 290, - "Name": "A Estrada", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino Farias/Da Gama/Laz�o/Toni Garrido", - "Milliseconds": 248842, - "Bytes": 8275673, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 291, - "Name": "Berlim", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Da Gama/Toni Garrido", - "Milliseconds": 207542, - "Bytes": 6920424, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 292, - "Name": "J� Foi", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino Farias/Da Gama/Laz�o/Toni Garrido", - "Milliseconds": 221544, - "Bytes": 7388466, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 293, - "Name": "Onde Voc� Mora?", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Marisa Monte/Nando Reis", - "Milliseconds": 256026, - "Bytes": 8502588, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 294, - "Name": "Pensamento", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino Farias/Da Gamma/Laz�o/R�s Bernard", - "Milliseconds": 173008, - "Bytes": 5748424, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 295, - "Name": "Concilia��o", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Da Gama/Laz�o/R�s Bernardo", - "Milliseconds": 257619, - "Bytes": 8552474, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 296, - "Name": "Realidade Virtual", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino Farias/Da Gama/Laz�o/Toni Garrido", - "Milliseconds": 195239, - "Bytes": 6503533, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 297, - "Name": "Mensagem", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino Farias/Da Gama/Laz�o/R�s Bernardo", - "Milliseconds": 225332, - "Bytes": 7488852, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 298, - "Name": "A Cor Do Sol", - "AlbumId": 26, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bernardo Vilhena/Da Gama/Laz�o", - "Milliseconds": 231392, - "Bytes": 7663348, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 27, - "Title": "Cidade Negra - Hits", - "ArtistId": 19, - "Tracks": [ - { - "TrackId": 299, - "Name": "Onde Voc� Mora?", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Marisa Monte/Nando Reis", - "Milliseconds": 298396, - "Bytes": 10056970, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 116, - "CustomerId": 32, - "InvoiceDate": "2010-05-17T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 8.91, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 300, - "Name": "O Er�", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bernardo Vilhena/Bino/Da Gama/Lazao/Toni Garrido", - "Milliseconds": 206942, - "Bytes": 6950332, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 301, - "Name": "A Sombra Da Maldade", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Da Gama/Toni Garrido", - "Milliseconds": 285231, - "Bytes": 9544383, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 302, - "Name": "A Estrada", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Da Gama/Lazao/Toni Garrido", - "Milliseconds": 282174, - "Bytes": 9344477, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 303, - "Name": "Falar A Verdade", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino/Da Gama/Ras Bernardo", - "Milliseconds": 244950, - "Bytes": 8189093, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 304, - "Name": "Firmamento", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Harry Lawes/Winston Foster-Vers", - "Milliseconds": 225488, - "Bytes": 7507866, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 305, - "Name": "Pensamento", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino/Da Gama/Ras Bernardo", - "Milliseconds": 192391, - "Bytes": 6399761, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 306, - "Name": "Realidade Virtual", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino/Da Gamma/Lazao/Toni Garrido", - "Milliseconds": 240300, - "Bytes": 8069934, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 307, - "Name": "Doutor", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino/Da Gama/Toni Garrido", - "Milliseconds": 178155, - "Bytes": 5950952, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 308, - "Name": "Na Frente Da TV", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bino/Da Gama/Lazao/Ras Bernardo", - "Milliseconds": 289750, - "Bytes": 9633659, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 309, - "Name": "Downtown", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Cidade Negra", - "Milliseconds": 239725, - "Bytes": 8024386, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 310, - "Name": "S�bado A Noite", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Lulu Santos", - "Milliseconds": 267363, - "Bytes": 8895073, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 311, - "Name": "A Cor Do Sol", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Bernardo Vilhena/Da Gama/Lazao", - "Milliseconds": 273031, - "Bytes": 9142937, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 312, - "Name": "Eu Tamb�m Quero Beijar", - "AlbumId": 27, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": "Fausto Nilo/Moraes Moreira/Pepeu Gomes", - "Milliseconds": 211147, - "Bytes": 7029400, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 20, - "Name": "Cl�udio Zoli", - "Albums": [ - { - "AlbumId": 28, - "Title": "Na Pista", - "ArtistId": 20, - "Tracks": [ - { - "TrackId": 313, - "Name": "Noite Do Prazer", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 311353, - "Bytes": 10309980, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 314, - "Name": "� Francesa", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 244532, - "Bytes": 8150846, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 315, - "Name": "Cada Um Cada Um (A Namoradeira)", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 253492, - "Bytes": 8441034, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 316, - "Name": "Linha Do Equador", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 244715, - "Bytes": 8123466, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 317, - "Name": "Amor Demais", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 254040, - "Bytes": 8420093, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 318, - "Name": "F�rias", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 264202, - "Bytes": 8731945, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 319, - "Name": "Gostava Tanto De Voc�", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 230452, - "Bytes": 7685326, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 320, - "Name": "Flor Do Futuro", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 275748, - "Bytes": 9205941, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 321, - "Name": "Felicidade Urgente", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 266605, - "Bytes": 8873358, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 322, - "Name": "Livre Pra Viver", - "AlbumId": 28, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 214595, - "Bytes": 7111596, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 11, - "CustomerId": 52, - "InvoiceDate": "2009-02-06T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 8.91, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 21, - "Name": "Various Artists", - "Albums": [ - { - "AlbumId": 29, - "Title": "Ax� Bahia 2001", - "ArtistId": 21, - "Tracks": [ - { - "TrackId": 323, - "Name": "Dig-Dig, Lambe-Lambe (Ao Vivo)", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Cassiano Costa/Cintia Maviane/J.F./Lucas Costa", - "Milliseconds": 205479, - "Bytes": 6892516, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 324, - "Name": "Perer�", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Augusto Concei��o/Chiclete Com Banana", - "Milliseconds": 198661, - "Bytes": 6643207, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 325, - "Name": "TriboTchan", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Cal Adan/Paulo Levi", - "Milliseconds": 194194, - "Bytes": 6507950, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 326, - "Name": "Tapa Aqui, Descobre Ali", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Paulo Levi/W. Rangel", - "Milliseconds": 188630, - "Bytes": 6327391, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 327, - "Name": "Daniela", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Jorge Cardoso/Pierre Onasis", - "Milliseconds": 230791, - "Bytes": 7748006, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 328, - "Name": "Bate Lata", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "F�bio Nolasco/Gal Sales/Ivan Brasil", - "Milliseconds": 206733, - "Bytes": 7034985, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 329, - "Name": "Garotas do Brasil", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Garay, Ricardo Engels/Luca Predabom/Ludwig, Carlos Henrique/Maur�cio Vieira", - "Milliseconds": 210155, - "Bytes": 6973625, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 330, - "Name": "Levada do Amor (Ailoviu)", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Luiz Wanderley/Paulo Levi", - "Milliseconds": 190093, - "Bytes": 6457752, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 331, - "Name": "Lavadeira", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Do Vale, Valverde/Gal Oliveira/Luciano Pinto", - "Milliseconds": 214256, - "Bytes": 7254147, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 332, - "Name": "Reboladeira", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Cal Adan/Ferrugem/Julinho Carioca/Tr�ona N� Dhomhnaill", - "Milliseconds": 210599, - "Bytes": 7027525, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 333, - "Name": "� que Nessa Encarna��o Eu Nasci Manga", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Lucina/Luli", - "Milliseconds": 196519, - "Bytes": 6568081, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 334, - "Name": "Reggae Tchan", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Cal Adan/Del Rey, Tension/Edu Casanova", - "Milliseconds": 206654, - "Bytes": 6931328, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 335, - "Name": "My Love", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Jauperi/Zeu G�es", - "Milliseconds": 203493, - "Bytes": 6772813, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 336, - "Name": "Latinha de Cerveja", - "AlbumId": 29, - "MediaTypeId": 1, - "GenreId": 9, - "Composer": "Adriano Bernandes/Edmar Neves", - "Milliseconds": 166687, - "Bytes": 5532564, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 32, - "Title": "Carnaval 2001", - "ArtistId": 21, - "Tracks": [ - { - "TrackId": 360, - "Name": "Vai-Vai 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 276349, - "Bytes": 9402241, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 361, - "Name": "X-9 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 273920, - "Bytes": 9310370, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 362, - "Name": "Gavioes 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 282723, - "Bytes": 9616640, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 363, - "Name": "Nene 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 284969, - "Bytes": 9694508, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 364, - "Name": "Rosas De Ouro 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 284342, - "Bytes": 9721084, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 365, - "Name": "Mocidade Alegre 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 282488, - "Bytes": 9599937, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 366, - "Name": "Camisa Verde 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 283454, - "Bytes": 9633755, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 367, - "Name": "Leandro De Itaquera 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 274808, - "Bytes": 9451845, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 368, - "Name": "Tucuruvi 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 287921, - "Bytes": 9883335, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 369, - "Name": "Aguia De Ouro 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 284160, - "Bytes": 9698729, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 370, - "Name": "Ipiranga 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 248293, - "Bytes": 8522591, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 371, - "Name": "Morro Da Casa Verde 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 284708, - "Bytes": 9718778, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 372, - "Name": "Perola Negra 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 281626, - "Bytes": 9619196, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 373, - "Name": "Sao Lucas 2001", - "AlbumId": 32, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 296254, - "Bytes": 10020122, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 45, - "Title": "Sambas De Enredo 2001", - "ArtistId": 21, - "Tracks": [ - { - "TrackId": 556, - "Name": "Imperatriz", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Guga/Marquinho Lessa/Tuninho Professor", - "Milliseconds": 339173, - "Bytes": 11348710, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 557, - "Name": "Beija-Flor", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caruso/Cleber/Deo/Osmar", - "Milliseconds": 327000, - "Bytes": 10991159, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 558, - "Name": "Viradouro", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dadinho/Gilbreto Gomes/Gustavo/P.C. Portugal/R. Mocoto", - "Milliseconds": 344320, - "Bytes": 11484362, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 559, - "Name": "Mocidade", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Domenil/J. Brito/Joaozinho/Rap, Marcelo Do", - "Milliseconds": 261720, - "Bytes": 8817757, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 560, - "Name": "Unidos Da Tijuca", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Douglas/Neves, Vicente Das/Silva, Gilmar L./Toninho Gentil/Wantuir", - "Milliseconds": 338834, - "Bytes": 11440689, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 561, - "Name": "Salgueiro", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Augusto/Craig Negoescu/Rocco Filho/Saara, Ze Carlos Da", - "Milliseconds": 305920, - "Bytes": 10294741, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 562, - "Name": "Mangueira", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Bizuca/Cl�vis P�/Gilson Bernini/Marelo D'Aguia", - "Milliseconds": 298318, - "Bytes": 9999506, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 563, - "Name": "Uni�o Da Ilha", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dito/Djalma Falcao/Ilha, Almir Da/M�rcio Andr�", - "Milliseconds": 330945, - "Bytes": 11100945, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 564, - "Name": "Grande Rio", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Carlos Santos/Ciro/Claudio Russo/Z� Luiz", - "Milliseconds": 307252, - "Bytes": 10251428, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 565, - "Name": "Portela", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Flavio Bororo/Paulo Apparicio/Wagner Alves/Zeca Sereno", - "Milliseconds": 319608, - "Bytes": 10712216, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 566, - "Name": "Caprichosos", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gule/Jorge 101/Lequinho/Luiz Piao", - "Milliseconds": 351320, - "Bytes": 11870956, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 567, - "Name": "Tradi��o", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Adalto Magalha/Lourenco", - "Milliseconds": 269165, - "Bytes": 9114880, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 568, - "Name": "Imp�rio Serrano", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Arlindo Cruz/Carlos Sena/Elmo Caetano/Mauricao", - "Milliseconds": 334942, - "Bytes": 11161196, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 569, - "Name": "Tuiuti", - "AlbumId": 45, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Claudio Martins/David Lima/Kleber Rodrigues/Livre, Cesare Som", - "Milliseconds": 259657, - "Bytes": 8749492, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 53, - "Title": "Vozes do MPB", - "ArtistId": 21, - "Tracks": [ - { - "TrackId": 661, - "Name": "Linha de Passe (Jo�o Bosco)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 230948, - "Bytes": 7902328, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 662, - "Name": "Pela Luz dos Olhos Teus (Mi�cha e Tom Jobim)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 163970, - "Bytes": 5399626, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 233, - "CustomerId": 19, - "InvoiceDate": "2011-10-22T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 3.96, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 663, - "Name": "Ch�o de Giz (Elba Ramalho)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 274834, - "Bytes": 9016916, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 339, - "CustomerId": 3, - "InvoiceDate": "2013-01-30T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 5.94, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 664, - "Name": "Marina (Dorival Caymmi)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 172643, - "Bytes": 5523628, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 665, - "Name": "Aquarela (Toquinho)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 259944, - "Bytes": 8480140, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 666, - "Name": "Cora��o do Agreste (Faf� de Bel�m)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 258194, - "Bytes": 8380320, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 234, - "CustomerId": 23, - "InvoiceDate": "2011-10-23T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 5.94, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 667, - "Name": "Dona (Roupa Nova)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 243356, - "Bytes": 7991295, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 668, - "Name": "Come�aria Tudo Outra Vez (Maria Creuza)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 206994, - "Bytes": 6851151, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 669, - "Name": "Ca�ador de Mim (S� \u0026 Guarabyra)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 238341, - "Bytes": 7751360, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 670, - "Name": "Romaria (Renato Teixeira)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 244793, - "Bytes": 8033885, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 234, - "CustomerId": 23, - "InvoiceDate": "2011-10-23T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 5.94, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 671, - "Name": "As Rosas N�o Falam (Beth Carvalho)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 116767, - "Bytes": 3836641, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 125, - "CustomerId": 34, - "InvoiceDate": "2010-06-30T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 0.99, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 672, - "Name": "Wave (Os Cariocas)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 130063, - "Bytes": 4298006, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 126, - "CustomerId": 35, - "InvoiceDate": "2010-07-13T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 673, - "Name": "Garota de Ipanema (Dick Farney)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 174367, - "Bytes": 5767474, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 126, - "CustomerId": 35, - "InvoiceDate": "2010-07-13T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 674, - "Name": "Preciso Apender a Viver S� (Maysa)", - "AlbumId": 53, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 143464, - "Bytes": 4642359, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 234, - "CustomerId": 23, - "InvoiceDate": "2011-10-23T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 5.94, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 22, - "Name": "Led Zeppelin", - "Albums": [ - { - "AlbumId": 30, - "Title": "BBC Sessions [Disc 1] [Live]", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 337, - "Name": "You Shook Me", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J B Lenoir/Willie Dixon", - "Milliseconds": 315951, - "Bytes": 10249958, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 338, - "Name": "I Can't Quit You Baby", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Willie Dixon", - "Milliseconds": 263836, - "Bytes": 8581414, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 339, - "Name": "Communication Breakdown", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Milliseconds": 192653, - "Bytes": 6287257, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 340, - "Name": "Dazed and Confused", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page", - "Milliseconds": 401920, - "Bytes": 13035765, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 341, - "Name": "The Girl I Love She Got Long Black Wavy Hair", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Bonham/John Estes/John Paul Jones/Robert Plant", - "Milliseconds": 183327, - "Bytes": 5995686, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 342, - "Name": "What is and Should Never Be", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 260675, - "Bytes": 8497116, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 343, - "Name": "Communication Breakdown(2)", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Milliseconds": 161149, - "Bytes": 5261022, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 344, - "Name": "Travelling Riverside Blues", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Johnson/Robert Plant", - "Milliseconds": 312032, - "Bytes": 10232581, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 345, - "Name": "Whole Lotta Love", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Bonham/John Paul Jones/Robert Plant/Willie Dixon", - "Milliseconds": 373394, - "Bytes": 12258175, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 346, - "Name": "Somethin' Else", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bob Cochran/Sharon Sheeley", - "Milliseconds": 127869, - "Bytes": 4165650, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 347, - "Name": "Communication Breakdown(3)", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Milliseconds": 185260, - "Bytes": 6041133, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 348, - "Name": "I Can't Quit You Baby(2)", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Willie Dixon", - "Milliseconds": 380551, - "Bytes": 12377615, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 349, - "Name": "You Shook Me(2)", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J B Lenoir/Willie Dixon", - "Milliseconds": 619467, - "Bytes": 20138673, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 350, - "Name": "How Many More Times", - "AlbumId": 30, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chester Burnett/Jimmy Page/John Bonham/John Paul Jones/Robert Plant", - "Milliseconds": 711836, - "Bytes": 23092953, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 44, - "Title": "Physical Graffiti [Disc 1]", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 550, - "Name": "Custard Pie", - "AlbumId": 44, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 253962, - "Bytes": 8348257, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 551, - "Name": "The Rover", - "AlbumId": 44, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 337084, - "Bytes": 11011286, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 552, - "Name": "In My Time Of Dying", - "AlbumId": 44, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones", - "Milliseconds": 666017, - "Bytes": 21676727, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 553, - "Name": "Houses Of The Holy", - "AlbumId": 44, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 242494, - "Bytes": 7972503, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 554, - "Name": "Trampled Under Foot", - "AlbumId": 44, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones", - "Milliseconds": 336692, - "Bytes": 11154468, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 555, - "Name": "Kashmir", - "AlbumId": 44, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham", - "Milliseconds": 508604, - "Bytes": 16686580, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 127, - "Title": "BBC Sessions [Disc 2] [Live]", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1577, - "Name": "Immigrant Song", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 201247, - "Bytes": 6457766, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 259, - "CustomerId": 49, - "InvoiceDate": "2012-02-22T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 1.98, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1578, - "Name": "Heartbreaker", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones/Robert Plant", - "Milliseconds": 316081, - "Bytes": 10179657, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 259, - "CustomerId": 49, - "InvoiceDate": "2012-02-22T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 1.98, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1579, - "Name": "Since I've Been Loving You", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones/Robert Plant", - "Milliseconds": 416365, - "Bytes": 13471959, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 367, - "CustomerId": 37, - "InvoiceDate": "2013-06-03T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 5.94, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1580, - "Name": "Black Dog", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones/Robert Plant", - "Milliseconds": 317622, - "Bytes": 10267572, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 260, - "CustomerId": 51, - "InvoiceDate": "2012-02-22T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 1.98, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1581, - "Name": "Dazed And Confused", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Led Zeppelin", - "Milliseconds": 1116734, - "Bytes": 36052247, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1582, - "Name": "Stairway To Heaven", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 529658, - "Bytes": 17050485, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 260, - "CustomerId": 51, - "InvoiceDate": "2012-02-22T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 1.98, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1583, - "Name": "Going To California", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 234605, - "Bytes": 7646749, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 367, - "CustomerId": 37, - "InvoiceDate": "2013-06-03T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 5.94, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1584, - "Name": "That's The Way", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 343431, - "Bytes": 11248455, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 261, - "CustomerId": 53, - "InvoiceDate": "2012-02-23T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 3.96, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1585, - "Name": "Whole Lotta Love (Medley)", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Arthur Crudup/Bernard Besman/Bukka White/Doc Pomus/John Bonham/John Lee Hooker/John Paul Jones/Mort Shuman/Robert Plant/Willie Dixon", - "Milliseconds": 825103, - "Bytes": 26742545, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1586, - "Name": "Thank You", - "AlbumId": 127, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 398262, - "Bytes": 12831826, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 261, - "CustomerId": 53, - "InvoiceDate": "2012-02-23T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 3.96, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 128, - "Title": "Coda", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1587, - "Name": "We're Gonna Groove", - "AlbumId": 128, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ben E.King/James Bethea", - "Milliseconds": 157570, - "Bytes": 5180975, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 367, - "CustomerId": 37, - "InvoiceDate": "2013-06-03T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 5.94, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1588, - "Name": "Poor Tom", - "AlbumId": 128, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 182491, - "Bytes": 6016220, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 261, - "CustomerId": 53, - "InvoiceDate": "2012-02-23T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 3.96, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1589, - "Name": "I Can't Quit You Baby", - "AlbumId": 128, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Willie Dixon", - "Milliseconds": 258168, - "Bytes": 8437098, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1590, - "Name": "Walter's Walk", - "AlbumId": 128, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 270785, - "Bytes": 8712499, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 261, - "CustomerId": 53, - "InvoiceDate": "2012-02-23T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 3.96, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1591, - "Name": "Ozone Baby", - "AlbumId": 128, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 215954, - "Bytes": 7079588, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 367, - "CustomerId": 37, - "InvoiceDate": "2013-06-03T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 5.94, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1592, - "Name": "Darlene", - "AlbumId": 128, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Bonham, John Paul Jones", - "Milliseconds": 307226, - "Bytes": 10078197, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1593, - "Name": "Bonzo's Montreux", - "AlbumId": 128, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham", - "Milliseconds": 258925, - "Bytes": 8557447, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1594, - "Name": "Wearing And Tearing", - "AlbumId": 128, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 330004, - "Bytes": 10701590, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 262, - "CustomerId": 57, - "InvoiceDate": "2012-02-24T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 129, - "Title": "Houses Of The Holy", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1595, - "Name": "The Song Remains The Same", - "AlbumId": 129, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Jimmy Page \u0026 Robert Plant/Robert Plant", - "Milliseconds": 330004, - "Bytes": 10708950, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1596, - "Name": "The Rain Song", - "AlbumId": 129, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Jimmy Page \u0026 Robert Plant/Robert Plant", - "Milliseconds": 459180, - "Bytes": 15029875, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1597, - "Name": "Over The Hills And Far Away", - "AlbumId": 129, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Jimmy Page \u0026 Robert Plant/Robert Plant", - "Milliseconds": 290089, - "Bytes": 9552829, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1598, - "Name": "The Crunge", - "AlbumId": 129, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones", - "Milliseconds": 197407, - "Bytes": 6460212, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 262, - "CustomerId": 57, - "InvoiceDate": "2012-02-24T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1599, - "Name": "Dancing Days", - "AlbumId": 129, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Jimmy Page \u0026 Robert Plant/Robert Plant", - "Milliseconds": 223216, - "Bytes": 7250104, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 153, - "CustomerId": 9, - "InvoiceDate": "2010-11-01T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 0.99, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1600, - "Name": "D'Yer Mak'er", - "AlbumId": 129, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones", - "Milliseconds": 262948, - "Bytes": 8645935, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 154, - "CustomerId": 10, - "InvoiceDate": "2010-11-14T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 1.98, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1601, - "Name": "No Quarter", - "AlbumId": 129, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones", - "Milliseconds": 420493, - "Bytes": 13656517, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 154, - "CustomerId": 10, - "InvoiceDate": "2010-11-14T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 1.98, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1602, - "Name": "The Ocean", - "AlbumId": 129, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones", - "Milliseconds": 271098, - "Bytes": 8846469, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 262, - "CustomerId": 57, - "InvoiceDate": "2012-02-24T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 130, - "Title": "In Through The Out Door", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1603, - "Name": "In The Evening", - "AlbumId": 130, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant \u0026 John Paul Jones", - "Milliseconds": 410566, - "Bytes": 13399734, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 155, - "CustomerId": 12, - "InvoiceDate": "2010-11-14T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 1.98, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1604, - "Name": "South Bound Saurez", - "AlbumId": 130, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones \u0026 Robert Plant", - "Milliseconds": 254406, - "Bytes": 8420427, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1605, - "Name": "Fool In The Rain", - "AlbumId": 130, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant \u0026 John Paul Jones", - "Milliseconds": 372950, - "Bytes": 12371433, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 155, - "CustomerId": 12, - "InvoiceDate": "2010-11-14T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 1.98, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1606, - "Name": "Hot Dog", - "AlbumId": 130, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page \u0026 Robert Plant", - "Milliseconds": 197198, - "Bytes": 6536167, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 262, - "CustomerId": 57, - "InvoiceDate": "2012-02-24T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1607, - "Name": "Carouselambra", - "AlbumId": 130, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones, Jimmy Page \u0026 Robert Plant", - "Milliseconds": 634435, - "Bytes": 20858315, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 156, - "CustomerId": 14, - "InvoiceDate": "2010-11-15T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 3.96, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1608, - "Name": "All My Love", - "AlbumId": 130, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant \u0026 John Paul Jones", - "Milliseconds": 356284, - "Bytes": 11684862, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1609, - "Name": "I'm Gonna Crawl", - "AlbumId": 130, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant \u0026 John Paul Jones", - "Milliseconds": 329639, - "Bytes": 10737665, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 156, - "CustomerId": 14, - "InvoiceDate": "2010-11-15T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 3.96, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 131, - "Title": "IV", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1610, - "Name": "Black Dog", - "AlbumId": 131, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Milliseconds": 296672, - "Bytes": 9660588, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 262, - "CustomerId": 57, - "InvoiceDate": "2012-02-24T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1611, - "Name": "Rock \u0026 Roll", - "AlbumId": 131, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "Milliseconds": 220917, - "Bytes": 7142127, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 156, - "CustomerId": 14, - "InvoiceDate": "2010-11-15T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 3.96, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1612, - "Name": "The Battle Of Evermore", - "AlbumId": 131, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 351555, - "Bytes": 11525689, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1613, - "Name": "Stairway To Heaven", - "AlbumId": 131, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 481619, - "Bytes": 15706767, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 156, - "CustomerId": 14, - "InvoiceDate": "2010-11-15T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 3.96, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1614, - "Name": "Misty Mountain Hop", - "AlbumId": 131, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Milliseconds": 278857, - "Bytes": 9092799, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 262, - "CustomerId": 57, - "InvoiceDate": "2012-02-24T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1615, - "Name": "Four Sticks", - "AlbumId": 131, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 284447, - "Bytes": 9481301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1616, - "Name": "Going To California", - "AlbumId": 131, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 215693, - "Bytes": 7068737, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1617, - "Name": "When The Levee Breaks", - "AlbumId": 131, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham, Memphis Minnie", - "Milliseconds": 427702, - "Bytes": 13912107, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 157, - "CustomerId": 18, - "InvoiceDate": "2010-11-16T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 5.94, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 132, - "Title": "Led Zeppelin I", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1618, - "Name": "Good Times Bad Times", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Milliseconds": 166164, - "Bytes": 5464077, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1619, - "Name": "Babe I'm Gonna Leave You", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 401475, - "Bytes": 13189312, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1620, - "Name": "You Shook Me", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. B. Lenoir/Willie Dixon", - "Milliseconds": 388179, - "Bytes": 12643067, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1621, - "Name": "Dazed and Confused", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page", - "Milliseconds": 386063, - "Bytes": 12610326, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 157, - "CustomerId": 18, - "InvoiceDate": "2010-11-16T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 5.94, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1622, - "Name": "Your Time Is Gonna Come", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Paul Jones", - "Milliseconds": 274860, - "Bytes": 9011653, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 48, - "CustomerId": 29, - "InvoiceDate": "2009-07-24T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 0.99, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1623, - "Name": "Black Mountain Side", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page", - "Milliseconds": 132702, - "Bytes": 4440602, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 49, - "CustomerId": 30, - "InvoiceDate": "2009-08-06T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 1.98, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1624, - "Name": "Communication Breakdown", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Milliseconds": 150230, - "Bytes": 4899554, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 49, - "CustomerId": 30, - "InvoiceDate": "2009-08-06T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 1.98, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1625, - "Name": "I Can't Quit You Baby", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Willie Dixon", - "Milliseconds": 282671, - "Bytes": 9252733, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 157, - "CustomerId": 18, - "InvoiceDate": "2010-11-16T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 5.94, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1626, - "Name": "How Many More Times", - "AlbumId": 132, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Milliseconds": 508055, - "Bytes": 16541364, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 50, - "CustomerId": 32, - "InvoiceDate": "2009-08-06T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 1.98, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 133, - "Title": "Led Zeppelin II", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1627, - "Name": "Whole Lotta Love", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "Milliseconds": 334471, - "Bytes": 11026243, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1628, - "Name": "What Is And What Should Never Be", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 287973, - "Bytes": 9369385, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 50, - "CustomerId": 32, - "InvoiceDate": "2009-08-06T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 1.98, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1629, - "Name": "The Lemon Song", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "Milliseconds": 379141, - "Bytes": 12463496, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 157, - "CustomerId": 18, - "InvoiceDate": "2010-11-16T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 5.94, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1630, - "Name": "Thank You", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 287791, - "Bytes": 9337392, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 51, - "CustomerId": 34, - "InvoiceDate": "2009-08-07T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1631, - "Name": "Heartbreaker", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "Milliseconds": 253988, - "Bytes": 8387560, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1632, - "Name": "Living Loving Maid (She's Just A Woman)", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 159216, - "Bytes": 5219819, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 51, - "CustomerId": 34, - "InvoiceDate": "2009-08-07T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1633, - "Name": "Ramble On", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 275591, - "Bytes": 9199710, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 157, - "CustomerId": 18, - "InvoiceDate": "2010-11-16T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 5.94, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1634, - "Name": "Moby Dick", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham, John Paul Jones, Jimmy Page", - "Milliseconds": 260728, - "Bytes": 8664210, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 51, - "CustomerId": 34, - "InvoiceDate": "2009-08-07T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1635, - "Name": "Bring It On Home", - "AlbumId": 133, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 259970, - "Bytes": 8494731, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 134, - "Title": "Led Zeppelin III", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1636, - "Name": "Immigrant Song", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 144875, - "Bytes": 4786461, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 51, - "CustomerId": 34, - "InvoiceDate": "2009-08-07T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1637, - "Name": "Friends", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 233560, - "Bytes": 7694220, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 157, - "CustomerId": 18, - "InvoiceDate": "2010-11-16T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 5.94, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1638, - "Name": "Celebration Day", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Milliseconds": 209528, - "Bytes": 6871078, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1639, - "Name": "Since I've Been Loving You", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Milliseconds": 444055, - "Bytes": 14482460, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1640, - "Name": "Out On The Tiles", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Bonham", - "Milliseconds": 246047, - "Bytes": 8060350, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 52, - "CustomerId": 38, - "InvoiceDate": "2009-08-08T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 5.94, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1641, - "Name": "Gallows Pole", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Traditional", - "Milliseconds": 296228, - "Bytes": 9757151, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1642, - "Name": "Tangerine", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page", - "Milliseconds": 189675, - "Bytes": 6200893, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1643, - "Name": "That's The Way", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant", - "Milliseconds": 337345, - "Bytes": 11202499, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1644, - "Name": "Bron-Y-Aur Stomp", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Milliseconds": 259500, - "Bytes": 8674508, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 52, - "CustomerId": 38, - "InvoiceDate": "2009-08-08T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 5.94, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1645, - "Name": "Hats Off To (Roy) Harper", - "AlbumId": 134, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Traditional", - "Milliseconds": 219376, - "Bytes": 7236640, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 368, - "CustomerId": 43, - "InvoiceDate": "2013-06-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 8.91, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 135, - "Title": "Physical Graffiti [Disc 2]", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1646, - "Name": "In The Light", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones/Robert Plant", - "Milliseconds": 526785, - "Bytes": 17033046, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1647, - "Name": "Bron-Yr-Aur", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page", - "Milliseconds": 126641, - "Bytes": 4150746, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1648, - "Name": "Down By The Seaside", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 316186, - "Bytes": 10371282, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 52, - "CustomerId": 38, - "InvoiceDate": "2009-08-08T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 5.94, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1649, - "Name": "Ten Years Gone", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 393116, - "Bytes": 12756366, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1650, - "Name": "Night Flight", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones/Robert Plant", - "Milliseconds": 217547, - "Bytes": 7160647, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1651, - "Name": "The Wanton Song", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 249887, - "Bytes": 8180988, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1652, - "Name": "Boogie With Stu", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Stewart/John Bonham/John Paul Jones/Mrs. Valens/Robert Plant", - "Milliseconds": 233273, - "Bytes": 7657086, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 52, - "CustomerId": 38, - "InvoiceDate": "2009-08-08T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 5.94, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1653, - "Name": "Black Country Woman", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 273084, - "Bytes": 8951732, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1654, - "Name": "Sick Again", - "AlbumId": 135, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 283036, - "Bytes": 9279263, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 136, - "Title": "Presence", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1655, - "Name": "Achilles Last Stand", - "AlbumId": 136, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 625502, - "Bytes": 20593955, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1656, - "Name": "For Your Life", - "AlbumId": 136, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 384391, - "Bytes": 12633382, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 52, - "CustomerId": 38, - "InvoiceDate": "2009-08-08T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 5.94, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1657, - "Name": "Royal Orleans", - "AlbumId": 136, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones", - "Milliseconds": 179591, - "Bytes": 5930027, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1658, - "Name": "Nobody's Fault But Mine", - "AlbumId": 136, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 376215, - "Bytes": 12237859, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1659, - "Name": "Candy Store Rock", - "AlbumId": 136, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 252055, - "Bytes": 8397423, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1660, - "Name": "Hots On For Nowhere", - "AlbumId": 136, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 284107, - "Bytes": 9342342, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 52, - "CustomerId": 38, - "InvoiceDate": "2009-08-08T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 5.94, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1661, - "Name": "Tea For One", - "AlbumId": 136, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page/Robert Plant", - "Milliseconds": 566752, - "Bytes": 18475264, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 137, - "Title": "The Song Remains The Same (Disc 1)", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1662, - "Name": "Rock \u0026 Roll", - "AlbumId": 137, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones/Robert Plant", - "Milliseconds": 242442, - "Bytes": 7897065, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1663, - "Name": "Celebration Day", - "AlbumId": 137, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones/Robert Plant", - "Milliseconds": 230034, - "Bytes": 7478487, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1664, - "Name": "The Song Remains The Same", - "AlbumId": 137, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 353358, - "Bytes": 11465033, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1665, - "Name": "Rain Song", - "AlbumId": 137, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 505808, - "Bytes": 16273705, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1666, - "Name": "Dazed And Confused", - "AlbumId": 137, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page", - "Milliseconds": 1612329, - "Bytes": 52490554, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 138, - "Title": "The Song Remains The Same (Disc 2)", - "ArtistId": 22, - "Tracks": [ - { - "TrackId": 1667, - "Name": "No Quarter", - "AlbumId": 138, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Paul Jones/Robert Plant", - "Milliseconds": 749897, - "Bytes": 24399285, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1668, - "Name": "Stairway To Heaven", - "AlbumId": 138, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robert Plant", - "Milliseconds": 657293, - "Bytes": 21354766, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 263, - "CustomerId": 4, - "InvoiceDate": "2012-02-27T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 8.91, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1669, - "Name": "Moby Dick", - "AlbumId": 138, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones", - "Milliseconds": 766354, - "Bytes": 25345841, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1670, - "Name": "Whole Lotta Love", - "AlbumId": 138, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Bonham/John Paul Jones/Robert Plant/Willie Dixon", - "Milliseconds": 863895, - "Bytes": 28191437, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 23, - "Name": "Frank Zappa \u0026 Captain Beefheart", - "Albums": [ - { - "AlbumId": 31, - "Title": "Bongo Fury", - "ArtistId": 23, - "Tracks": [ - { - "TrackId": 351, - "Name": "Debra Kadabra", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Frank Zappa", - "Milliseconds": 234553, - "Bytes": 7649679, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 352, - "Name": "Carolina Hard-Core Ecstasy", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Frank Zappa", - "Milliseconds": 359680, - "Bytes": 11731061, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 353, - "Name": "Sam With The Showing Scalp Flat Top", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Don Van Vliet", - "Milliseconds": 171284, - "Bytes": 5572993, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 354, - "Name": "Poofter's Froth Wyoming Plans Ahead", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Frank Zappa", - "Milliseconds": 183902, - "Bytes": 6007019, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 355, - "Name": "200 Years Old", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Frank Zappa", - "Milliseconds": 272561, - "Bytes": 8912465, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 356, - "Name": "Cucamonga", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Frank Zappa", - "Milliseconds": 144483, - "Bytes": 4728586, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 357, - "Name": "Advance Romance", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Frank Zappa", - "Milliseconds": 677694, - "Bytes": 22080051, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 358, - "Name": "Man With The Woman Head", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Don Van Vliet", - "Milliseconds": 88894, - "Bytes": 2922044, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 359, - "Name": "Muffin Man", - "AlbumId": 31, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Frank Zappa", - "Milliseconds": 332878, - "Bytes": 10891682, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 24, - "Name": "Marcos Valle", - "Albums": [ - { - "AlbumId": 33, - "Title": "Chill: Brazil (Disc 1)", - "ArtistId": 24, - "Tracks": [ - { - "TrackId": 374, - "Name": "Guanabara", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Marcos Valle", - "Milliseconds": 247614, - "Bytes": 8499591, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 375, - "Name": "Mas Que Nada", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Jorge Ben", - "Milliseconds": 248398, - "Bytes": 8255254, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 376, - "Name": "V�o Sobre o Horizonte", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "J.r.Bertami/Parana", - "Milliseconds": 225097, - "Bytes": 7528825, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 377, - "Name": "A Paz", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Donato/Gilberto Gil", - "Milliseconds": 263183, - "Bytes": 8619173, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 378, - "Name": "Wave (Vou te Contar)", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Antonio Carlos Jobim", - "Milliseconds": 271647, - "Bytes": 9057557, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 379, - "Name": "�gua de Beber", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Antonio Carlos Jobim/Vinicius de Moraes", - "Milliseconds": 146677, - "Bytes": 4866476, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 327, - "CustomerId": 1, - "InvoiceDate": "2012-12-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 13.86, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 380, - "Name": "Samba da Ben�aco", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Baden Powell/Vinicius de Moraes", - "Milliseconds": 282200, - "Bytes": 9440676, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 381, - "Name": "Pode Parar", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Jorge Vercilo/Jota Maranhao", - "Milliseconds": 179408, - "Bytes": 6046678, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 382, - "Name": "Menino do Rio", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 262713, - "Bytes": 8737489, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 383, - "Name": "Ando Meio Desligado", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso", - "Milliseconds": 195813, - "Bytes": 6547648, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 384, - "Name": "Mist�rio da Ra�a", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Luiz Melodia/Ricardo Augusto", - "Milliseconds": 184320, - "Bytes": 6191752, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 222, - "CustomerId": 21, - "InvoiceDate": "2011-08-30T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 13.86, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 385, - "Name": "All Star", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Nando Reis", - "Milliseconds": 176326, - "Bytes": 5891697, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 386, - "Name": "Menina Bonita", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Alexandre Brazil/Pedro Luis/Rodrigo Cabelo", - "Milliseconds": 237087, - "Bytes": 7938246, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 387, - "Name": "Pescador de Ilus�es", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Macelo Yuka/O Rappa", - "Milliseconds": 245524, - "Bytes": 8267067, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 388, - "Name": "� Vontade (Live Mix)", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Bombom/Ed Motta", - "Milliseconds": 180636, - "Bytes": 5972430, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 389, - "Name": "Maria Fuma�a", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Luiz Carlos/Oberdan", - "Milliseconds": 141008, - "Bytes": 4743149, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 390, - "Name": "Sambassim (dj patife remix)", - "AlbumId": 33, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Alba Carvalho/Fernando Porto", - "Milliseconds": 213655, - "Bytes": 7243166, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 25, - "Name": "Milton Nascimento \u0026 Bebeto", - "Albums": null - }, - { - "ArtistId": 26, - "Name": "Azymuth", - "Albums": null - }, - { - "ArtistId": 27, - "Name": "Gilberto Gil", - "Albums": [ - { - "AlbumId": 85, - "Title": "As Can��es de Eu Tu Eles", - "ArtistId": 27, - "Tracks": [ - { - "TrackId": 1073, - "Name": "�ia Eu Aqui De Novo", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 219454, - "Bytes": 7469735, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1074, - "Name": "Bai�o Da Penha", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": null, - "Milliseconds": 247928, - "Bytes": 8393047, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1075, - "Name": "Esperando Na Janela", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Manuca/Raimundinho DoAcordion/Targino Godim", - "Milliseconds": 261041, - "Bytes": 8660617, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1076, - "Name": "Juazeiro", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Humberto Teixeira/Luiz Gonzaga", - "Milliseconds": 222275, - "Bytes": 7349779, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1077, - "Name": "�ltimo Pau-De-Arara", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Corumb�/Jos� Gumar�es/Venancio", - "Milliseconds": 200437, - "Bytes": 6638563, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1078, - "Name": "Asa Branca", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Humberto Teixeira/Luiz Gonzaga", - "Milliseconds": 217051, - "Bytes": 7387183, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1079, - "Name": "Qui Nem Jil�", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Humberto Teixeira/Luiz Gonzaga", - "Milliseconds": 204695, - "Bytes": 6937472, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1080, - "Name": "Assum Preto", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Humberto Teixeira/Luiz Gonzaga", - "Milliseconds": 199653, - "Bytes": 6625000, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1081, - "Name": "Pau-De-Arara", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Guio De Morais E Seus \"Parentes\"/Luiz Gonzaga", - "Milliseconds": 191660, - "Bytes": 6340649, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1082, - "Name": "A Volta Da Asa Branca", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Luiz Gonzaga/Z� Dantas", - "Milliseconds": 271020, - "Bytes": 9098093, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1083, - "Name": "O Amor Daqui De Casa", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Gilberto Gil", - "Milliseconds": 148636, - "Bytes": 4888292, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1084, - "Name": "As Pegadas Do Amor", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Gilberto Gil", - "Milliseconds": 209136, - "Bytes": 6899062, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1085, - "Name": "Lamento Sertanejo", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Dominguinhos/Gilberto Gil", - "Milliseconds": 260963, - "Bytes": 8518290, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1086, - "Name": "Casinha Feliz", - "AlbumId": 85, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Gilberto Gil", - "Milliseconds": 32287, - "Bytes": 1039615, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 86, - "Title": "Quanta Gente Veio Ver (Live)", - "ArtistId": 27, - "Tracks": [ - { - "TrackId": 1087, - "Name": "Introdu��o (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 154096, - "Bytes": 5227579, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1088, - "Name": "Palco (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 238315, - "Bytes": 8026622, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1089, - "Name": "Is This Love (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 295262, - "Bytes": 9819759, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 349, - "CustomerId": 11, - "InvoiceDate": "2013-03-18T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 0.99, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1090, - "Name": "Stir It Up (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 282409, - "Bytes": 9594738, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 350, - "CustomerId": 12, - "InvoiceDate": "2013-03-31T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 1.98, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1091, - "Name": "Refavela (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 236695, - "Bytes": 7985305, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 350, - "CustomerId": 12, - "InvoiceDate": "2013-03-31T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 1.98, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1092, - "Name": "Vendedor De Caranguejo (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 248842, - "Bytes": 8358128, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1093, - "Name": "Quanta (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 357485, - "Bytes": 11774865, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 351, - "CustomerId": 14, - "InvoiceDate": "2013-03-31T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 1.98, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1094, - "Name": "Estrela (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 285309, - "Bytes": 9436411, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1095, - "Name": "Pela Internet (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 263471, - "Bytes": 8804401, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 351, - "CustomerId": 14, - "InvoiceDate": "2013-03-31T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 1.98, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1096, - "Name": "C�rebro Eletr�nico (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 231627, - "Bytes": 7805352, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1097, - "Name": "Opachor� (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 259526, - "Bytes": 8596384, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 352, - "CustomerId": 16, - "InvoiceDate": "2013-04-01T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 3.96, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1098, - "Name": "Copacabana (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 289671, - "Bytes": 9673672, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1099, - "Name": "A Novidade (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 316969, - "Bytes": 10508000, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 352, - "CustomerId": 16, - "InvoiceDate": "2013-04-01T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 3.96, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1100, - "Name": "Ghandi (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 222458, - "Bytes": 7481950, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1101, - "Name": "De Ouro E Marfim (Live)", - "AlbumId": 86, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 234971, - "Bytes": 7838453, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 352, - "CustomerId": 16, - "InvoiceDate": "2013-04-01T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 3.96, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 87, - "Title": "Quanta Gente Veio ver--B�nus De Carnaval", - "ArtistId": 27, - "Tracks": [ - { - "TrackId": 1102, - "Name": "Doce De Carnaval (Candy All)", - "AlbumId": 87, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 356101, - "Bytes": 11998470, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1103, - "Name": "Lamento De Carnaval", - "AlbumId": 87, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 294530, - "Bytes": 9819276, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 352, - "CustomerId": 16, - "InvoiceDate": "2013-04-01T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 3.96, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1104, - "Name": "Pretinha", - "AlbumId": 87, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 265273, - "Bytes": 8914579, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 28, - "Name": "Jo�o Gilberto", - "Albums": null - }, - { - "ArtistId": 29, - "Name": "Bebel Gilberto", - "Albums": null - }, - { - "ArtistId": 30, - "Name": "Jorge Vercilo", - "Albums": null - }, - { - "ArtistId": 31, - "Name": "Baby Consuelo", - "Albums": null - }, - { - "ArtistId": 32, - "Name": "Ney Matogrosso", - "Albums": null - }, - { - "ArtistId": 33, - "Name": "Luiz Melodia", - "Albums": null - }, - { - "ArtistId": 34, - "Name": "Nando Reis", - "Albums": null - }, - { - "ArtistId": 35, - "Name": "Pedro Lu�s \u0026 A Parede", - "Albums": null - }, - { - "ArtistId": 36, - "Name": "O Rappa", - "Albums": [ - { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro", - "ArtistId": 36, - "Tracks": [ - { - "TrackId": 3319, - "Name": "Instinto Colectivo", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 300564, - "Bytes": 12024875, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3320, - "Name": "Chapa o Coco", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 143830, - "Bytes": 5755478, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3321, - "Name": "Prostituta", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 359000, - "Bytes": 14362307, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3322, - "Name": "Eu So Queria Sumir", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 269740, - "Bytes": 10791921, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3323, - "Name": "Tres Reis", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 304143, - "Bytes": 12168015, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3324, - "Name": "Um Lugar ao Sol", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 212323, - "Bytes": 8495217, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3325, - "Name": "Batalha Naval", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 285727, - "Bytes": 11431382, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3326, - "Name": "Todo o Carnaval tem seu Fim", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 237426, - "Bytes": 9499371, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3327, - "Name": "O Misterio do Samba", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 226142, - "Bytes": 9047970, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3328, - "Name": "Armadura", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 232881, - "Bytes": 9317533, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3329, - "Name": "Na Ladeira", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 221570, - "Bytes": 8865099, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3330, - "Name": "Carimbo", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 328751, - "Bytes": 13152314, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3331, - "Name": "Catimbo", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 254484, - "Bytes": 10181692, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3332, - "Name": "Funk de Bamba", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 237322, - "Bytes": 9495184, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3333, - "Name": "Chega no Suingue", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 221805, - "Bytes": 8874509, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3334, - "Name": "Mun-Ra", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 274651, - "Bytes": 10988338, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3335, - "Name": "Freestyle Love", - "AlbumId": 259, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": null, - "Milliseconds": 318484, - "Bytes": 12741680, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 37, - "Name": "Ed Motta", - "Albums": [ - { - "AlbumId": 47, - "Title": "The Best of Ed Motta", - "ArtistId": 37, - "Tracks": [ - { - "TrackId": 583, - "Name": "Solu��o", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 247431, - "Bytes": 8100449, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 584, - "Name": "Manuel", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 230269, - "Bytes": 7677671, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 585, - "Name": "Entre E Ou�a", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 286302, - "Bytes": 9391004, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 586, - "Name": "Um Contrato Com Deus", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 202501, - "Bytes": 6636465, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 587, - "Name": "Um Jantar Pra Dois", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 244009, - "Bytes": 8021589, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 588, - "Name": "Vamos Dan�ar", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 226194, - "Bytes": 7617432, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 589, - "Name": "Um Love", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 181603, - "Bytes": 6095524, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 590, - "Name": "Seis Da Tarde", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 238445, - "Bytes": 7935898, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 591, - "Name": "Baixo Rio", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 198008, - "Bytes": 6521676, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 592, - "Name": "Sombras Do Meu Destino", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 280685, - "Bytes": 9161539, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 593, - "Name": "Do You Have Other Loves?", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 295235, - "Bytes": 9604273, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 594, - "Name": "Agora Que O Dia Acordou", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 323213, - "Bytes": 10572752, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 595, - "Name": "J�!!!", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 217782, - "Bytes": 7103608, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 596, - "Name": "A Rua", - "AlbumId": 47, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 238027, - "Bytes": 7930264, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 38, - "Name": "Banda Black Rio", - "Albums": null - }, - { - "ArtistId": 39, - "Name": "Fernanda Porto", - "Albums": null - }, - { - "ArtistId": 40, - "Name": "Os Cariocas", - "Albums": null - }, - { - "ArtistId": 41, - "Name": "Elis Regina", - "Albums": [ - { - "AlbumId": 71, - "Title": "Elis Regina-Minha Hist�ria", - "ArtistId": 41, - "Tracks": [ - { - "TrackId": 877, - "Name": "O B�bado e a Equilibrista", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 223059, - "Bytes": 7306143, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 878, - "Name": "O Mestre-Sala dos Mares", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 186226, - "Bytes": 6180414, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 879, - "Name": "Atr�s da Porta", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 166608, - "Bytes": 5432518, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 346, - "CustomerId": 41, - "InvoiceDate": "2013-03-02T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 5.94, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 880, - "Name": "Dois Pra L�, Dois Pra C�", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 263026, - "Bytes": 8684639, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 237, - "CustomerId": 52, - "InvoiceDate": "2011-11-08T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 0.99, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 881, - "Name": "Casa no Campo", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 170788, - "Bytes": 5531841, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 238, - "CustomerId": 53, - "InvoiceDate": "2011-11-21T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 1.98, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 882, - "Name": "Romaria", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 242834, - "Bytes": 7968525, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 238, - "CustomerId": 53, - "InvoiceDate": "2011-11-21T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 1.98, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 883, - "Name": "Al�, Al�, Marciano", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 241397, - "Bytes": 8137254, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 346, - "CustomerId": 41, - "InvoiceDate": "2013-03-02T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 5.94, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 884, - "Name": "Me Deixas Louca", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 214831, - "Bytes": 6888030, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 239, - "CustomerId": 55, - "InvoiceDate": "2011-11-21T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 1.98, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 885, - "Name": "Fascina��o", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 180793, - "Bytes": 5793959, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 886, - "Name": "Saudosa Maloca", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 278125, - "Bytes": 9059416, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 239, - "CustomerId": 55, - "InvoiceDate": "2011-11-21T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 1.98, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 887, - "Name": "As Apar�ncias Enganam", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 247379, - "Bytes": 8014346, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 346, - "CustomerId": 41, - "InvoiceDate": "2013-03-02T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 5.94, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 888, - "Name": "Madalena", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 157387, - "Bytes": 5243721, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 240, - "CustomerId": 57, - "InvoiceDate": "2011-11-22T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 889, - "Name": "Maria Rosa", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 232803, - "Bytes": 7592504, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 890, - "Name": "Aprendendo A Jogar", - "AlbumId": 71, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 290664, - "Bytes": 9391041, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 240, - "CustomerId": 57, - "InvoiceDate": "2011-11-22T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 42, - "Name": "Milton Nascimento", - "Albums": [ - { - "AlbumId": 158, - "Title": "Milton Nascimento Ao Vivo", - "ArtistId": 42, - "Tracks": [ - { - "TrackId": 1916, - "Name": "Cora��o De Estudante", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Wagner Tiso, Milton Nascimento", - "Milliseconds": 238550, - "Bytes": 7797308, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1917, - "Name": "A Noite Do Meu Bem", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dolores Duran", - "Milliseconds": 220081, - "Bytes": 7125225, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1918, - "Name": "Paisagem Na Janela", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "L� Borges, Fernando Brant", - "Milliseconds": 197694, - "Bytes": 6523547, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1919, - "Name": "Cuitelinho", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Folclore", - "Milliseconds": 209397, - "Bytes": 6803970, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1920, - "Name": "Caxang�", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 245551, - "Bytes": 8144179, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1921, - "Name": "Nos Bailes Da Vida", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 275748, - "Bytes": 9126170, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1922, - "Name": "Menestrel Das Alagoas", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 199758, - "Bytes": 6542289, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1923, - "Name": "Brasil", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 155428, - "Bytes": 5252560, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1924, - "Name": "Can��o Do Novo Mundo", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Beto Guedes, Ronaldo Bastos", - "Milliseconds": 215353, - "Bytes": 7032626, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1925, - "Name": "Um Gosto De Sol", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Ronaldo Bastos", - "Milliseconds": 307200, - "Bytes": 9893875, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1926, - "Name": "Solar", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 156212, - "Bytes": 5098288, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1927, - "Name": "Para Lennon E McCartney", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "L� Borges, M�rcio Borges, Fernando Brant", - "Milliseconds": 321828, - "Bytes": 10626920, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1928, - "Name": "Maria, Maria", - "AlbumId": 158, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 72463, - "Bytes": 2371543, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 159, - "Title": "Minas", - "ArtistId": 42, - "Tracks": [ - { - "TrackId": 1929, - "Name": "Minas", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Caetano Veloso", - "Milliseconds": 152293, - "Bytes": 4921056, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1930, - "Name": "F� Cega, Faca Amolada", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Ronaldo Bastos", - "Milliseconds": 278099, - "Bytes": 9258649, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1931, - "Name": "Beijo Partido", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Toninho Horta", - "Milliseconds": 229564, - "Bytes": 7506969, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1932, - "Name": "Saudade Dos Avi�es Da Panair (Conversando No Bar)", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 268721, - "Bytes": 8805088, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1933, - "Name": "Gran Circo", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, M�rcio Borges", - "Milliseconds": 251297, - "Bytes": 8237026, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1934, - "Name": "Ponta de Areia", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 272796, - "Bytes": 8874285, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1935, - "Name": "Trastevere", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Ronaldo Bastos", - "Milliseconds": 265665, - "Bytes": 8708399, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1936, - "Name": "Idolatrada", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Fernando Brant", - "Milliseconds": 286249, - "Bytes": 9426153, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1937, - "Name": "Leila (Venha Ser Feliz)", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento", - "Milliseconds": 209737, - "Bytes": 6898507, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1938, - "Name": "Paula E Bebeto", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Milton Nascimento, Caetano Veloso", - "Milliseconds": 135732, - "Bytes": 4583956, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1939, - "Name": "Simples", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Nelson Angelo", - "Milliseconds": 133093, - "Bytes": 4326333, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1940, - "Name": "Norwegian Wood", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "John Lennon, Paul McCartney", - "Milliseconds": 413910, - "Bytes": 13520382, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1941, - "Name": "Caso Voc� Queira Saber", - "AlbumId": 159, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Beto Guedes, M�rcio Borges", - "Milliseconds": 205688, - "Bytes": 6787901, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 43, - "Name": "A Cor Do Som", - "Albums": null - }, - { - "ArtistId": 44, - "Name": "Kid Abelha", - "Albums": null - }, - { - "ArtistId": 45, - "Name": "Sandra De S�", - "Albums": null - }, - { - "ArtistId": 46, - "Name": "Jorge Ben", - "Albums": [ - { - "AlbumId": 122, - "Title": "Jorge Ben Jor 25 Anos", - "ArtistId": 46, - "Tracks": [ - { - "TrackId": 1506, - "Name": "Engenho De Dentro", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 310073, - "Bytes": 10211473, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1507, - "Name": "Alcohol", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 355239, - "Bytes": 12010478, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1508, - "Name": "Mama Africa", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 283062, - "Bytes": 9488316, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1509, - "Name": "Salve Simpatia", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 343484, - "Bytes": 11314756, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1510, - "Name": "W/Brasil (Chama O S�ndico)", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 317100, - "Bytes": 10599953, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1511, - "Name": "Pa�s Tropical", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 452519, - "Bytes": 14946972, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1512, - "Name": "Os Alquimistas Est�o Chegando", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 367281, - "Bytes": 12304520, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1513, - "Name": "Charles Anjo 45", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 389276, - "Bytes": 13022833, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1514, - "Name": "Selassi�", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 326321, - "Bytes": 10724982, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1515, - "Name": "Menina Sarar�", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 191477, - "Bytes": 6393818, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1516, - "Name": "Que Maravilha", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 338076, - "Bytes": 10996656, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1517, - "Name": "Santa Clara Clareou", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 380081, - "Bytes": 12524725, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1518, - "Name": "Filho Maravilha", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 227526, - "Bytes": 7498259, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1519, - "Name": "Taj Mahal", - "AlbumId": 122, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 289750, - "Bytes": 9502898, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 47, - "Name": "Hermeto Pascoal", - "Albums": null - }, - { - "ArtistId": 48, - "Name": "Bar�o Vermelho", - "Albums": null - }, - { - "ArtistId": 49, - "Name": "Edson, DJ Marky \u0026 DJ Patife Featuring Fernanda Porto", - "Albums": null - }, - { - "ArtistId": 50, - "Name": "Metallica", - "Albums": [ - { - "AlbumId": 35, - "Title": "Garage Inc. (Disc 1)", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 408, - "Name": "Free Speech For The Dumb", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Molaney/Morris/Roberts/Wainwright", - "Milliseconds": 155428, - "Bytes": 5076048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 409, - "Name": "It's Electric", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris/Tatler", - "Milliseconds": 213995, - "Bytes": 6978601, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 410, - "Name": "Sabbra Cadabra", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Black Sabbath", - "Milliseconds": 380342, - "Bytes": 12418147, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 411, - "Name": "Turn The Page", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Seger", - "Milliseconds": 366524, - "Bytes": 11946327, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 332, - "CustomerId": 24, - "InvoiceDate": "2012-12-30T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 5.94, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 412, - "Name": "Die Die My Darling", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Danzig", - "Milliseconds": 149315, - "Bytes": 4867667, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 413, - "Name": "Loverman", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Cave", - "Milliseconds": 472764, - "Bytes": 15446975, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 414, - "Name": "Mercyful Fate", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Diamond/Shermann", - "Milliseconds": 671712, - "Bytes": 21942829, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 415, - "Name": "Astronomy", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "A.Bouchard/J.Bouchard/S.Pearlman", - "Milliseconds": 397531, - "Bytes": 13065612, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 332, - "CustomerId": 24, - "InvoiceDate": "2012-12-30T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 5.94, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 416, - "Name": "Whiskey In The Jar", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Traditional", - "Milliseconds": 305005, - "Bytes": 9943129, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 223, - "CustomerId": 35, - "InvoiceDate": "2011-09-07T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 0.99, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 417, - "Name": "Tuesday's Gone", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Collins/Van Zandt", - "Milliseconds": 545750, - "Bytes": 17900787, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 224, - "CustomerId": 36, - "InvoiceDate": "2011-09-20T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 1.98, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 418, - "Name": "The More I See", - "AlbumId": 35, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Molaney/Morris/Roberts/Wainwright", - "Milliseconds": 287973, - "Bytes": 9378873, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 224, - "CustomerId": 36, - "InvoiceDate": "2011-09-20T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 1.98, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 148, - "Title": "Black Album", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1801, - "Name": "Enter Sandman", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Milliseconds": 332251, - "Bytes": 10852002, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": null - }, - { - "TrackId": 1802, - "Name": "Sad But True", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Ulrich", - "Milliseconds": 324754, - "Bytes": 10541258, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1803, - "Name": "Holier Than Thou", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Ulrich", - "Milliseconds": 227892, - "Bytes": 7462011, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 374, - "CustomerId": 16, - "InvoiceDate": "2013-07-04T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 5.94, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1804, - "Name": "The Unforgiven", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Milliseconds": 387082, - "Bytes": 12646886, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1805, - "Name": "Wherever I May Roam", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Ulrich", - "Milliseconds": 404323, - "Bytes": 13161169, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1806, - "Name": "Don't Tread On Me", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Ulrich", - "Milliseconds": 240483, - "Bytes": 7827907, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1807, - "Name": "Through The Never", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Milliseconds": 244375, - "Bytes": 8024047, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 374, - "CustomerId": 16, - "InvoiceDate": "2013-07-04T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 5.94, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1808, - "Name": "Nothing Else Matters", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Ulrich", - "Milliseconds": 388832, - "Bytes": 12606241, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 265, - "CustomerId": 27, - "InvoiceDate": "2012-03-11T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 0.99, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1809, - "Name": "Of Wolf And Man", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Milliseconds": 256835, - "Bytes": 8339785, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 266, - "CustomerId": 28, - "InvoiceDate": "2012-03-24T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 1.98, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1810, - "Name": "The God That Failed", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Ulrich", - "Milliseconds": 308610, - "Bytes": 10055959, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 266, - "CustomerId": 28, - "InvoiceDate": "2012-03-24T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 1.98, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1811, - "Name": "My Friend Of Misery", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich and Jason Newsted", - "Milliseconds": 409547, - "Bytes": 13293515, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 374, - "CustomerId": 16, - "InvoiceDate": "2013-07-04T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 5.94, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1812, - "Name": "The Struggle Within", - "AlbumId": 148, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Ulrich", - "Milliseconds": 234240, - "Bytes": 7654052, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 267, - "CustomerId": 30, - "InvoiceDate": "2012-03-24T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 1.98, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1813, - "Name": "Helpless", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris/Tatler", - "Milliseconds": 398315, - "Bytes": 12977902, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1814, - "Name": "The Small Hours", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Holocaust", - "Milliseconds": 403435, - "Bytes": 13215133, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 267, - "CustomerId": 30, - "InvoiceDate": "2012-03-24T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 1.98, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1815, - "Name": "The Wait", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Killing Joke", - "Milliseconds": 295418, - "Bytes": 9688418, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 374, - "CustomerId": 16, - "InvoiceDate": "2013-07-04T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 5.94, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1816, - "Name": "Crash Course In Brain Surgery", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bourge/Phillips/Shelley", - "Milliseconds": 190406, - "Bytes": 6233729, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 268, - "CustomerId": 32, - "InvoiceDate": "2012-03-25T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 3.96, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1817, - "Name": "Last Caress/Green Hell", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Danzig", - "Milliseconds": 209972, - "Bytes": 6854313, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1818, - "Name": "Am I Evil?", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris/Tatler", - "Milliseconds": 470256, - "Bytes": 15387219, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 268, - "CustomerId": 32, - "InvoiceDate": "2012-03-25T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 3.96, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1819, - "Name": "Blitzkrieg", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Jones/Sirotto/Smith", - "Milliseconds": 216685, - "Bytes": 7090018, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 374, - "CustomerId": 16, - "InvoiceDate": "2013-07-04T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 5.94, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1820, - "Name": "Breadfan", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bourge/Phillips/Shelley", - "Milliseconds": 341551, - "Bytes": 11100130, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 268, - "CustomerId": 32, - "InvoiceDate": "2012-03-25T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 3.96, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1821, - "Name": "The Prince", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris/Tatler", - "Milliseconds": 265769, - "Bytes": 8624492, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1822, - "Name": "Stone Cold Crazy", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Deacon/May/Mercury/Taylor", - "Milliseconds": 137717, - "Bytes": 4514830, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 268, - "CustomerId": 32, - "InvoiceDate": "2012-03-25T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 3.96, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1823, - "Name": "So What", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Culmer/Exalt", - "Milliseconds": 189152, - "Bytes": 6162894, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 374, - "CustomerId": 16, - "InvoiceDate": "2013-07-04T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 5.94, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1824, - "Name": "Killing Time", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sweet Savage", - "Milliseconds": 183693, - "Bytes": 6021197, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1825, - "Name": "Overkill", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Tayler", - "Milliseconds": 245133, - "Bytes": 7971330, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1826, - "Name": "Damage Case", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Farren/Kilmister/Tayler", - "Milliseconds": 220212, - "Bytes": 7212997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 269, - "CustomerId": 36, - "InvoiceDate": "2012-03-26T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 5.94, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1827, - "Name": "Stone Dead Forever", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Tayler", - "Milliseconds": 292127, - "Bytes": 9556060, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1828, - "Name": "Too Late Too Late", - "AlbumId": 149, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Tayler", - "Milliseconds": 192052, - "Bytes": 6276291, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 150, - "Title": "Kill 'Em All", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1829, - "Name": "Hit The Lights", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 257541, - "Bytes": 8357088, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1830, - "Name": "The Four Horsemen", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "Milliseconds": 433188, - "Bytes": 14178138, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 269, - "CustomerId": 36, - "InvoiceDate": "2012-03-26T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 5.94, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1831, - "Name": "Motorbreath", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield", - "Milliseconds": 188395, - "Bytes": 6153933, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 160, - "CustomerId": 47, - "InvoiceDate": "2010-12-02T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 0.99, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1832, - "Name": "Jump In The Fire", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "Milliseconds": 281573, - "Bytes": 9135755, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 161, - "CustomerId": 48, - "InvoiceDate": "2010-12-15T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 1.98, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1833, - "Name": "(Anesthesia) Pulling Teeth", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Cliff Burton", - "Milliseconds": 254955, - "Bytes": 8234710, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 161, - "CustomerId": 48, - "InvoiceDate": "2010-12-15T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 1.98, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1834, - "Name": "Whiplash", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 249208, - "Bytes": 8102839, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 269, - "CustomerId": 36, - "InvoiceDate": "2012-03-26T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 5.94, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1835, - "Name": "Phantom Lord", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "Milliseconds": 302053, - "Bytes": 9817143, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 162, - "CustomerId": 50, - "InvoiceDate": "2010-12-15T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 1.98, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1836, - "Name": "No Remorse", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 386795, - "Bytes": 12672166, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1837, - "Name": "Seek \u0026 Destroy", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 415817, - "Bytes": 13452301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 162, - "CustomerId": 50, - "InvoiceDate": "2010-12-15T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 1.98, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1838, - "Name": "Metal Militia", - "AlbumId": 150, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "Milliseconds": 311327, - "Bytes": 10141785, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 269, - "CustomerId": 36, - "InvoiceDate": "2012-03-26T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 5.94, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 151, - "Title": "Load", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1839, - "Name": "Ain't My Bitch", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 304457, - "Bytes": 9931015, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 163, - "CustomerId": 52, - "InvoiceDate": "2010-12-16T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 3.96, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1840, - "Name": "2 X 4", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Milliseconds": 328254, - "Bytes": 10732251, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1841, - "Name": "The House Jack Built", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Milliseconds": 398942, - "Bytes": 13005152, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 163, - "CustomerId": 52, - "InvoiceDate": "2010-12-16T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 3.96, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1842, - "Name": "Until It Sleeps", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 269740, - "Bytes": 8837394, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 269, - "CustomerId": 36, - "InvoiceDate": "2012-03-26T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 5.94, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1843, - "Name": "King Nothing", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Milliseconds": 328097, - "Bytes": 10681477, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 163, - "CustomerId": 52, - "InvoiceDate": "2010-12-16T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 3.96, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1844, - "Name": "Hero Of The Day", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Milliseconds": 261982, - "Bytes": 8540298, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1845, - "Name": "Bleeding Me", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Milliseconds": 497998, - "Bytes": 16249420, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 163, - "CustomerId": 52, - "InvoiceDate": "2010-12-16T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 3.96, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1846, - "Name": "Cure", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 294347, - "Bytes": 9648615, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 269, - "CustomerId": 36, - "InvoiceDate": "2012-03-26T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 5.94, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1847, - "Name": "Poor Twisted Me", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 240065, - "Bytes": 7854349, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1848, - "Name": "Wasted My Hate", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Milliseconds": 237296, - "Bytes": 7762300, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1849, - "Name": "Mama Said", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 319764, - "Bytes": 10508310, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 164, - "CustomerId": 56, - "InvoiceDate": "2010-12-17T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 5.94, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1850, - "Name": "Thorn Within", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Milliseconds": 351738, - "Bytes": 11486686, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1851, - "Name": "Ronnie", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 317204, - "Bytes": 10390947, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1852, - "Name": "The Outlaw Torn", - "AlbumId": 151, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich", - "Milliseconds": 588721, - "Bytes": 19286261, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 152, - "Title": "Master Of Puppets", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1853, - "Name": "Battery", - "AlbumId": 152, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "J.Hetfield/L.Ulrich", - "Milliseconds": 312424, - "Bytes": 10229577, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 164, - "CustomerId": 56, - "InvoiceDate": "2010-12-17T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 5.94, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1854, - "Name": "Master Of Puppets", - "AlbumId": 152, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "K.Hammett", - "Milliseconds": 515239, - "Bytes": 16893720, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 55, - "CustomerId": 8, - "InvoiceDate": "2009-08-24T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 0.99, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1855, - "Name": "The Thing That Should Not Be", - "AlbumId": 152, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "K.Hammett", - "Milliseconds": 396199, - "Bytes": 12952368, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 56, - "CustomerId": 9, - "InvoiceDate": "2009-09-06T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 1.98, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1856, - "Name": "Welcome Home (Sanitarium)", - "AlbumId": 152, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "K.Hammett", - "Milliseconds": 387186, - "Bytes": 12679965, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 56, - "CustomerId": 9, - "InvoiceDate": "2009-09-06T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 1.98, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1857, - "Name": "Disposable Heroes", - "AlbumId": 152, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "J.Hetfield/L.Ulrich", - "Milliseconds": 496718, - "Bytes": 16135560, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 164, - "CustomerId": 56, - "InvoiceDate": "2010-12-17T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 5.94, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1858, - "Name": "Leper Messiah", - "AlbumId": 152, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "C.Burton", - "Milliseconds": 347428, - "Bytes": 11310434, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 57, - "CustomerId": 11, - "InvoiceDate": "2009-09-06T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 1.98, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1859, - "Name": "Orion", - "AlbumId": 152, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "K.Hammett", - "Milliseconds": 500062, - "Bytes": 16378477, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1860, - "Name": "Damage Inc.", - "AlbumId": 152, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "K.Hammett", - "Milliseconds": 330919, - "Bytes": 10725029, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 57, - "CustomerId": 11, - "InvoiceDate": "2009-09-06T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 1.98, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 153, - "Title": "ReLoad", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1861, - "Name": "Fuel", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich, Hammett", - "Milliseconds": 269557, - "Bytes": 8876811, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 164, - "CustomerId": 56, - "InvoiceDate": "2010-12-17T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 5.94, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1862, - "Name": "The Memory Remains", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich", - "Milliseconds": 279353, - "Bytes": 9110730, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 58, - "CustomerId": 13, - "InvoiceDate": "2009-09-07T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 3.96, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1863, - "Name": "Devil's Dance", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich", - "Milliseconds": 318955, - "Bytes": 10414832, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1864, - "Name": "The Unforgiven II", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich, Hammett", - "Milliseconds": 395520, - "Bytes": 12886474, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 58, - "CustomerId": 13, - "InvoiceDate": "2009-09-07T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 3.96, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1865, - "Name": "Better Than You", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich", - "Milliseconds": 322899, - "Bytes": 10549070, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 164, - "CustomerId": 56, - "InvoiceDate": "2010-12-17T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 5.94, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1866, - "Name": "Slither", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich, Hammett", - "Milliseconds": 313103, - "Bytes": 10199789, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 58, - "CustomerId": 13, - "InvoiceDate": "2009-09-07T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 3.96, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1867, - "Name": "Carpe Diem Baby", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich, Hammett", - "Milliseconds": 372480, - "Bytes": 12170693, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1868, - "Name": "Bad Seed", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich, Hammett", - "Milliseconds": 245394, - "Bytes": 8019586, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 58, - "CustomerId": 13, - "InvoiceDate": "2009-09-07T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 3.96, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1869, - "Name": "Where The Wild Things Are", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich, Newsted", - "Milliseconds": 414380, - "Bytes": 13571280, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 164, - "CustomerId": 56, - "InvoiceDate": "2010-12-17T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 5.94, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1870, - "Name": "Prince Charming", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich", - "Milliseconds": 365061, - "Bytes": 12009412, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1871, - "Name": "Low Man's Lyric", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich", - "Milliseconds": 457639, - "Bytes": 14855583, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1872, - "Name": "Attitude", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich", - "Milliseconds": 315898, - "Bytes": 10335734, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 59, - "CustomerId": 17, - "InvoiceDate": "2009-09-08T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 5.94, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1873, - "Name": "Fixxxer", - "AlbumId": 153, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Hetfield, Ulrich, Hammett", - "Milliseconds": 496065, - "Bytes": 16190041, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 154, - "Title": "Ride The Lightning", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1874, - "Name": "Fight Fire With Fire", - "AlbumId": 154, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Metallica", - "Milliseconds": 285753, - "Bytes": 9420856, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1875, - "Name": "Ride The Lightning", - "AlbumId": 154, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Metallica", - "Milliseconds": 397740, - "Bytes": 13055884, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1876, - "Name": "For Whom The Bell Tolls", - "AlbumId": 154, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Metallica", - "Milliseconds": 311719, - "Bytes": 10159725, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 59, - "CustomerId": 17, - "InvoiceDate": "2009-09-08T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 5.94, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1877, - "Name": "Fade To Black", - "AlbumId": 154, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Metallica", - "Milliseconds": 414824, - "Bytes": 13531954, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 375, - "CustomerId": 22, - "InvoiceDate": "2013-07-07T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 8.91, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1878, - "Name": "Trapped Under Ice", - "AlbumId": 154, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Metallica", - "Milliseconds": 244532, - "Bytes": 7975942, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1879, - "Name": "Escape", - "AlbumId": 154, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Metallica", - "Milliseconds": 264359, - "Bytes": 8652332, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1880, - "Name": "Creeping Death", - "AlbumId": 154, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Metallica", - "Milliseconds": 396878, - "Bytes": 12955593, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 59, - "CustomerId": 17, - "InvoiceDate": "2009-09-08T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 5.94, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1881, - "Name": "The Call Of Ktulu", - "AlbumId": 154, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Metallica", - "Milliseconds": 534883, - "Bytes": 17486240, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 155, - "Title": "St. Anger", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1882, - "Name": "Frantic", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 350458, - "Bytes": 11510849, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1883, - "Name": "St. Anger", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 441234, - "Bytes": 14363779, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1884, - "Name": "Some Kind Of Monster", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 505626, - "Bytes": 16557497, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 59, - "CustomerId": 17, - "InvoiceDate": "2009-09-08T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 5.94, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1885, - "Name": "Dirty Window", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 324989, - "Bytes": 10670604, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1886, - "Name": "Invisible Kid", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 510197, - "Bytes": 16591800, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1887, - "Name": "My World", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 345626, - "Bytes": 11253756, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1888, - "Name": "Shoot Me Again", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 430210, - "Bytes": 14093551, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 59, - "CustomerId": 17, - "InvoiceDate": "2009-09-08T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 5.94, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1889, - "Name": "Sweet Amber", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 327235, - "Bytes": 10616595, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1890, - "Name": "The Unnamed Feeling", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 429479, - "Bytes": 14014582, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1891, - "Name": "Purify", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 314017, - "Bytes": 10232537, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1892, - "Name": "All Within My Hands", - "AlbumId": 155, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Milliseconds": 527986, - "Bytes": 17162741, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 59, - "CustomerId": 17, - "InvoiceDate": "2009-09-08T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 5.94, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 156, - "Title": "...And Justice For All", - "ArtistId": 50, - "Tracks": [ - { - "TrackId": 1893, - "Name": "Blackened", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich \u0026 Jason Newsted", - "Milliseconds": 403382, - "Bytes": 13254874, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1894, - "Name": "...And Justice For All", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich \u0026 Kirk Hammett", - "Milliseconds": 585769, - "Bytes": 19262088, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1895, - "Name": "Eye Of The Beholder", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich \u0026 Kirk Hammett", - "Milliseconds": 385828, - "Bytes": 12747894, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1896, - "Name": "One", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield \u0026 Lars Ulrich", - "Milliseconds": 446484, - "Bytes": 14695721, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1897, - "Name": "The Shortest Straw", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield and Lars Ulrich", - "Milliseconds": 395389, - "Bytes": 13013990, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1898, - "Name": "Harvester Of Sorrow", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield and Lars Ulrich", - "Milliseconds": 345547, - "Bytes": 11377339, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1899, - "Name": "The Frayed Ends Of Sanity", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Milliseconds": 464039, - "Bytes": 15198986, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1900, - "Name": "To Live Is To Die", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich and Cliff Burton", - "Milliseconds": 588564, - "Bytes": 19243795, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 270, - "CustomerId": 42, - "InvoiceDate": "2012-03-29T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 8.91, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1901, - "Name": "Dyers Eve", - "AlbumId": 156, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Milliseconds": 313991, - "Bytes": 10302828, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 51, - "Name": "Queen", - "Albums": [ - { - "AlbumId": 36, - "Title": "Greatest Hits II", - "ArtistId": 51, - "Tracks": [ - { - "TrackId": 419, - "Name": "A Kind Of Magic", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Roger Taylor", - "Milliseconds": 262608, - "Bytes": 8689618, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 332, - "CustomerId": 24, - "InvoiceDate": "2012-12-30T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 5.94, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 420, - "Name": "Under Pressure", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen \u0026 David Bowie", - "Milliseconds": 236617, - "Bytes": 7739042, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 225, - "CustomerId": 38, - "InvoiceDate": "2011-09-20T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 1.98, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 421, - "Name": "Radio GA GA", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Roger Taylor", - "Milliseconds": 343745, - "Bytes": 11358573, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 422, - "Name": "I Want It All", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 241684, - "Bytes": 7876564, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 225, - "CustomerId": 38, - "InvoiceDate": "2011-09-20T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 1.98, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 423, - "Name": "I Want To Break Free", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Deacon", - "Milliseconds": 259108, - "Bytes": 8552861, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 332, - "CustomerId": 24, - "InvoiceDate": "2012-12-30T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 5.94, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 424, - "Name": "Innuendo", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 387761, - "Bytes": 12664591, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 226, - "CustomerId": 40, - "InvoiceDate": "2011-09-21T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 3.96, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 425, - "Name": "It's A Hard Life", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Freddie Mercury", - "Milliseconds": 249417, - "Bytes": 8112242, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 117, - "CustomerId": 41, - "InvoiceDate": "2010-05-22T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 13.86, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 426, - "Name": "Breakthru", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 249234, - "Bytes": 8150479, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 226, - "CustomerId": 40, - "InvoiceDate": "2011-09-21T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 3.96, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 427, - "Name": "Who Wants To Live Forever", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Brian May", - "Milliseconds": 297691, - "Bytes": 9577577, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 332, - "CustomerId": 24, - "InvoiceDate": "2012-12-30T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 5.94, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 428, - "Name": "Headlong", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 273057, - "Bytes": 8921404, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 226, - "CustomerId": 40, - "InvoiceDate": "2011-09-21T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 3.96, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 429, - "Name": "The Miracle", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 294974, - "Bytes": 9671923, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 430, - "Name": "I'm Going Slightly Mad", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 248032, - "Bytes": 8192339, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 226, - "CustomerId": 40, - "InvoiceDate": "2011-09-21T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 3.96, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 431, - "Name": "The Invisible Man", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 238994, - "Bytes": 7920353, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 332, - "CustomerId": 24, - "InvoiceDate": "2012-12-30T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 5.94, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 432, - "Name": "Hammer To Fall", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Brian May", - "Milliseconds": 220316, - "Bytes": 7255404, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 433, - "Name": "Friends Will Be Friends", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Freddie Mercury \u0026 John Deacon", - "Milliseconds": 248920, - "Bytes": 8114582, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 434, - "Name": "The Show Must Go On", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 263784, - "Bytes": 8526760, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 227, - "CustomerId": 44, - "InvoiceDate": "2011-09-22T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 5.94, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 435, - "Name": "One Vision", - "AlbumId": 36, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Queen", - "Milliseconds": 242599, - "Bytes": 7936928, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 185, - "Title": "Greatest Hits I", - "ArtistId": 51, - "Tracks": [ - { - "TrackId": 2254, - "Name": "Bohemian Rhapsody", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 358948, - "Bytes": 11619868, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2255, - "Name": "Another One Bites The Dust", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Deacon, John", - "Milliseconds": 216946, - "Bytes": 7172355, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 386, - "CustomerId": 27, - "InvoiceDate": "2013-09-02T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 1.98, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2256, - "Name": "Killer Queen", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 182099, - "Bytes": 5967749, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2257, - "Name": "Fat Bottomed Girls", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "May, Brian", - "Milliseconds": 204695, - "Bytes": 6630041, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 387, - "CustomerId": 29, - "InvoiceDate": "2013-09-03T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 3.96, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2258, - "Name": "Bicycle Race", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 183823, - "Bytes": 6012409, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2259, - "Name": "You're My Best Friend", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Deacon, John", - "Milliseconds": 172225, - "Bytes": 5602173, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 387, - "CustomerId": 29, - "InvoiceDate": "2013-09-03T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 3.96, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2260, - "Name": "Don't Stop Me Now", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 211826, - "Bytes": 6896666, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2261, - "Name": "Save Me", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "May, Brian", - "Milliseconds": 228832, - "Bytes": 7444624, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 387, - "CustomerId": 29, - "InvoiceDate": "2013-09-03T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 3.96, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2262, - "Name": "Crazy Little Thing Called Love", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 164231, - "Bytes": 5435501, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2263, - "Name": "Somebody To Love", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 297351, - "Bytes": 9650520, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 387, - "CustomerId": 29, - "InvoiceDate": "2013-09-03T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 3.96, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2264, - "Name": "Now I'm Here", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "May, Brian", - "Milliseconds": 255346, - "Bytes": 8328312, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2265, - "Name": "Good Old-Fashioned Lover Boy", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 175960, - "Bytes": 5747506, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2266, - "Name": "Play The Game", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 213368, - "Bytes": 6915832, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2267, - "Name": "Flash", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "May, Brian", - "Milliseconds": 168489, - "Bytes": 5464986, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 388, - "CustomerId": 33, - "InvoiceDate": "2013-09-04T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 5.94, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2268, - "Name": "Seven Seas Of Rhye", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 170553, - "Bytes": 5539957, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2269, - "Name": "We Will Rock You", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Deacon, John/May, Brian", - "Milliseconds": 122880, - "Bytes": 4026955, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2270, - "Name": "We Are The Champions", - "AlbumId": 185, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury, Freddie", - "Milliseconds": 180950, - "Bytes": 5880231, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 186, - "Title": "News Of The World", - "ArtistId": 51, - "Tracks": [ - { - "TrackId": 2271, - "Name": "We Will Rock You", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "May", - "Milliseconds": 122671, - "Bytes": 4026815, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 388, - "CustomerId": 33, - "InvoiceDate": "2013-09-04T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 5.94, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2272, - "Name": "We Are The Champions", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury", - "Milliseconds": 182883, - "Bytes": 5939794, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 279, - "CustomerId": 44, - "InvoiceDate": "2012-05-12T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 0.99, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2273, - "Name": "Sheer Heart Attack", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Taylor", - "Milliseconds": 207386, - "Bytes": 6642685, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 280, - "CustomerId": 45, - "InvoiceDate": "2012-05-25T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 1.98, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2274, - "Name": "All Dead, All Dead", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "May", - "Milliseconds": 190119, - "Bytes": 6144878, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 280, - "CustomerId": 45, - "InvoiceDate": "2012-05-25T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 1.98, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2275, - "Name": "Spread Your Wings", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Deacon", - "Milliseconds": 275356, - "Bytes": 8936992, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 388, - "CustomerId": 33, - "InvoiceDate": "2013-09-04T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 5.94, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2276, - "Name": "Fight From The Inside", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Taylor", - "Milliseconds": 184737, - "Bytes": 6078001, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 281, - "CustomerId": 47, - "InvoiceDate": "2012-05-25T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 1.98, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2277, - "Name": "Get Down, Make Love", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury", - "Milliseconds": 231235, - "Bytes": 7509333, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2278, - "Name": "Sleep On The Sidewalk", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "May", - "Milliseconds": 187428, - "Bytes": 6099840, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 281, - "CustomerId": 47, - "InvoiceDate": "2012-05-25T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 1.98, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2279, - "Name": "Who Needs You", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Deacon", - "Milliseconds": 186958, - "Bytes": 6292969, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 388, - "CustomerId": 33, - "InvoiceDate": "2013-09-04T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 5.94, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2280, - "Name": "It's Late", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "May", - "Milliseconds": 386194, - "Bytes": 12519388, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 282, - "CustomerId": 49, - "InvoiceDate": "2012-05-26T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 3.96, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2281, - "Name": "My Melancholy Blues", - "AlbumId": 186, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mercury", - "Milliseconds": 206471, - "Bytes": 6691838, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 52, - "Name": "Kiss", - "Albums": [ - { - "AlbumId": 37, - "Title": "Greatest Kiss", - "ArtistId": 52, - "Tracks": [ - { - "TrackId": 436, - "Name": "Detroit Rock City", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, B. Ezrin", - "Milliseconds": 218880, - "Bytes": 7146372, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 437, - "Name": "Black Diamond", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley", - "Milliseconds": 314148, - "Bytes": 10266007, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 438, - "Name": "Hard Luck Woman", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley", - "Milliseconds": 216032, - "Bytes": 7109267, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 227, - "CustomerId": 44, - "InvoiceDate": "2011-09-22T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 5.94, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 439, - "Name": "Sure Know Something", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Vincent Poncia", - "Milliseconds": 242468, - "Bytes": 7939886, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 118, - "CustomerId": 55, - "InvoiceDate": "2010-05-30T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 0.99, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 440, - "Name": "Love Gun", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley", - "Milliseconds": 196257, - "Bytes": 6424915, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 119, - "CustomerId": 56, - "InvoiceDate": "2010-06-12T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 1.98, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 441, - "Name": "Deuce", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons", - "Milliseconds": 185077, - "Bytes": 6097210, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 119, - "CustomerId": 56, - "InvoiceDate": "2010-06-12T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 1.98, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 442, - "Name": "Goin' Blind", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons, S. Coronel", - "Milliseconds": 216215, - "Bytes": 7045314, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 227, - "CustomerId": 44, - "InvoiceDate": "2011-09-22T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 5.94, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 443, - "Name": "Shock Me", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ace Frehley", - "Milliseconds": 227291, - "Bytes": 7529336, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 120, - "CustomerId": 58, - "InvoiceDate": "2010-06-12T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 1.98, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 444, - "Name": "Do You Love Me", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, B. Ezrin, K. Fowley", - "Milliseconds": 214987, - "Bytes": 6976194, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 445, - "Name": "She", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons, S. Coronel", - "Milliseconds": 248346, - "Bytes": 8229734, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 120, - "CustomerId": 58, - "InvoiceDate": "2010-06-12T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 1.98, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 446, - "Name": "I Was Made For Loving You", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Vincent Poncia, Desmond Child", - "Milliseconds": 271360, - "Bytes": 9018078, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 227, - "CustomerId": 44, - "InvoiceDate": "2011-09-22T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 5.94, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 447, - "Name": "Shout It Out Loud", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Gene Simmons, B. Ezrin", - "Milliseconds": 219742, - "Bytes": 7194424, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 121, - "CustomerId": 1, - "InvoiceDate": "2010-06-13T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 3.96, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 448, - "Name": "God Of Thunder", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley", - "Milliseconds": 255791, - "Bytes": 8309077, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 12, - "CustomerId": 2, - "InvoiceDate": "2009-02-11T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 13.86, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 449, - "Name": "Calling Dr. Love", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons", - "Milliseconds": 225332, - "Bytes": 7395034, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 121, - "CustomerId": 1, - "InvoiceDate": "2010-06-13T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 3.96, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 450, - "Name": "Beth", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "S. Penridge, Bob Ezrin, Peter Criss", - "Milliseconds": 166974, - "Bytes": 5360574, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 227, - "CustomerId": 44, - "InvoiceDate": "2011-09-22T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 5.94, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 451, - "Name": "Strutter", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Gene Simmons", - "Milliseconds": 192496, - "Bytes": 6317021, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 121, - "CustomerId": 1, - "InvoiceDate": "2010-06-13T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 3.96, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 452, - "Name": "Rock And Roll All Nite", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Gene Simmons", - "Milliseconds": 173609, - "Bytes": 5735902, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 453, - "Name": "Cold Gin", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ace Frehley", - "Milliseconds": 262243, - "Bytes": 8609783, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 121, - "CustomerId": 1, - "InvoiceDate": "2010-06-13T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 3.96, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 454, - "Name": "Plaster Caster", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons", - "Milliseconds": 207333, - "Bytes": 6801116, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 227, - "CustomerId": 44, - "InvoiceDate": "2011-09-22T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 5.94, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 455, - "Name": "God Gave Rock 'n' Roll To You", - "AlbumId": 37, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Gene Simmons, Rus Ballard, Bob Ezrin", - "Milliseconds": 320444, - "Bytes": 10441590, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 126, - "Title": "Unplugged [Live]", - "ArtistId": 52, - "Tracks": [ - { - "TrackId": 1562, - "Name": "Comin' Home", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Ace Frehley", - "Milliseconds": 172068, - "Bytes": 5661120, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1563, - "Name": "Plaster Caster", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons", - "Milliseconds": 198060, - "Bytes": 6528719, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 366, - "CustomerId": 33, - "InvoiceDate": "2013-06-02T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 3.96, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1564, - "Name": "Goin' Blind", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons, Stephen Coronel", - "Milliseconds": 217652, - "Bytes": 7167523, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1565, - "Name": "Do You Love Me", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Bob Ezrin, Kim Fowley", - "Milliseconds": 193619, - "Bytes": 6343111, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 366, - "CustomerId": 33, - "InvoiceDate": "2013-06-02T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 3.96, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1566, - "Name": "Domino", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons", - "Milliseconds": 226377, - "Bytes": 7488191, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1567, - "Name": "Sure Know Something", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Vincent Poncia", - "Milliseconds": 254354, - "Bytes": 8375190, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 366, - "CustomerId": 33, - "InvoiceDate": "2013-06-02T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 3.96, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1568, - "Name": "A World Without Heroes", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Gene Simmons, Bob Ezrin, Lewis Reed", - "Milliseconds": 177815, - "Bytes": 5832524, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1569, - "Name": "Rock Bottom", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Ace Frehley", - "Milliseconds": 200594, - "Bytes": 6560818, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1570, - "Name": "See You Tonight", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons", - "Milliseconds": 146494, - "Bytes": 4817521, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1571, - "Name": "I Still Love You", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley", - "Milliseconds": 369815, - "Bytes": 12086145, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 367, - "CustomerId": 37, - "InvoiceDate": "2013-06-03T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 5.94, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1572, - "Name": "Every Time I Look At You", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Vincent Cusano", - "Milliseconds": 283898, - "Bytes": 9290948, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1573, - "Name": "2,000 Man", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Jagger, Keith Richard", - "Milliseconds": 312450, - "Bytes": 10292829, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1574, - "Name": "Beth", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Peter Criss, Stan Penridge, Bob Ezrin", - "Milliseconds": 170187, - "Bytes": 5577807, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1575, - "Name": "Nothin' To Lose", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gene Simmons", - "Milliseconds": 222354, - "Bytes": 7351460, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 367, - "CustomerId": 37, - "InvoiceDate": "2013-06-03T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 5.94, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1576, - "Name": "Rock And Roll All Nite", - "AlbumId": 126, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Stanley, Gene Simmons", - "Milliseconds": 259631, - "Bytes": 8549296, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 258, - "CustomerId": 48, - "InvoiceDate": "2012-02-09T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 0.99, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 53, - "Name": "Spyro Gyra", - "Albums": [ - { - "AlbumId": 38, - "Title": "Heart of the Night", - "ArtistId": 53, - "Tracks": [ - { - "TrackId": 456, - "Name": "Heart of the Night", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 273737, - "Bytes": 9098263, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 457, - "Name": "De La Luz", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 315219, - "Bytes": 10518284, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 122, - "CustomerId": 5, - "InvoiceDate": "2010-06-14T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 5.94, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 458, - "Name": "Westwood Moon", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 295627, - "Bytes": 9765802, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 459, - "Name": "Midnight", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 266866, - "Bytes": 8851060, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 460, - "Name": "Playtime", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 273580, - "Bytes": 9070880, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 461, - "Name": "Surrender", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 287634, - "Bytes": 9422926, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 122, - "CustomerId": 5, - "InvoiceDate": "2010-06-14T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 5.94, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 462, - "Name": "Valentino's", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 296124, - "Bytes": 9848545, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 13, - "CustomerId": 16, - "InvoiceDate": "2009-02-19T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 0.99, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 463, - "Name": "Believe", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 310778, - "Bytes": 10317185, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 14, - "CustomerId": 17, - "InvoiceDate": "2009-03-04T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 1.98, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 464, - "Name": "As We Sleep", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 316865, - "Bytes": 10429398, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 14, - "CustomerId": 17, - "InvoiceDate": "2009-03-04T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 1.98, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 465, - "Name": "When Evening Falls", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 298135, - "Bytes": 9863942, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 122, - "CustomerId": 5, - "InvoiceDate": "2010-06-14T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 5.94, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 466, - "Name": "J Squared", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 288757, - "Bytes": 9480777, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 15, - "CustomerId": 19, - "InvoiceDate": "2009-03-04T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 1.98, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 467, - "Name": "Best Thing", - "AlbumId": 38, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 274259, - "Bytes": 9069394, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 204, - "Title": "Morning Dance", - "ArtistId": 53, - "Tracks": [ - { - "TrackId": 2523, - "Name": "Morning Dance", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jay Beckenstein", - "Milliseconds": 238759, - "Bytes": 8101979, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2524, - "Name": "Jubilee", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jeremy Wall", - "Milliseconds": 275147, - "Bytes": 9151846, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2525, - "Name": "Rasul", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jeremy Wall", - "Milliseconds": 238315, - "Bytes": 7854737, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2526, - "Name": "Song For Lorraine", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jay Beckenstein", - "Milliseconds": 240091, - "Bytes": 8101723, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 290, - "CustomerId": 32, - "InvoiceDate": "2012-06-27T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 5.94, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2527, - "Name": "Starburst", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jeremy Wall", - "Milliseconds": 291500, - "Bytes": 9768399, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 181, - "CustomerId": 43, - "InvoiceDate": "2011-03-05T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 0.99, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2528, - "Name": "Heliopolis", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jay Beckenstein", - "Milliseconds": 338729, - "Bytes": 11365655, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 182, - "CustomerId": 44, - "InvoiceDate": "2011-03-18T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 1.98, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2529, - "Name": "It Doesn't Matter", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Chet Catallo", - "Milliseconds": 270027, - "Bytes": 9034177, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 182, - "CustomerId": 44, - "InvoiceDate": "2011-03-18T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 1.98, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2530, - "Name": "Little Linda", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jeremy Wall", - "Milliseconds": 264019, - "Bytes": 8958743, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 290, - "CustomerId": 32, - "InvoiceDate": "2012-06-27T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 5.94, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2531, - "Name": "End Of Romanticism", - "AlbumId": 204, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Rick Strauss", - "Milliseconds": 320078, - "Bytes": 10553155, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 183, - "CustomerId": 46, - "InvoiceDate": "2011-03-18T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 54, - "Name": "Green Day", - "Albums": [ - { - "AlbumId": 39, - "Title": "International Superhits", - "ArtistId": 54, - "Tracks": [ - { - "TrackId": 468, - "Name": "Maria", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 167262, - "Bytes": 5484747, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 15, - "CustomerId": 19, - "InvoiceDate": "2009-03-04T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 1.98, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 469, - "Name": "Poprocks And Coke", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 158354, - "Bytes": 5243078, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 122, - "CustomerId": 5, - "InvoiceDate": "2010-06-14T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 5.94, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 470, - "Name": "Longview", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 234083, - "Bytes": 7714939, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 16, - "CustomerId": 21, - "InvoiceDate": "2009-03-05T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 3.96, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 471, - "Name": "Welcome To Paradise", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 224208, - "Bytes": 7406008, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 472, - "Name": "Basket Case", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 181629, - "Bytes": 5951736, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 16, - "CustomerId": 21, - "InvoiceDate": "2009-03-05T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 3.96, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 473, - "Name": "When I Come Around", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 178364, - "Bytes": 5839426, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 122, - "CustomerId": 5, - "InvoiceDate": "2010-06-14T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 5.94, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 474, - "Name": "She", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 134164, - "Bytes": 4425128, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 16, - "CustomerId": 21, - "InvoiceDate": "2009-03-05T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 3.96, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 475, - "Name": "J.A.R. (Jason Andrew Relva)", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike Dirnt -Words Green Day -Music", - "Milliseconds": 170997, - "Bytes": 5645755, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 476, - "Name": "Geek Stink Breath", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 135888, - "Bytes": 4408983, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 16, - "CustomerId": 21, - "InvoiceDate": "2009-03-05T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 3.96, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 477, - "Name": "Brain Stew", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 193149, - "Bytes": 6305550, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 122, - "CustomerId": 5, - "InvoiceDate": "2010-06-14T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 5.94, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 478, - "Name": "Jaded", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 90331, - "Bytes": 2950224, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 479, - "Name": "Walking Contradiction", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 151170, - "Bytes": 4932366, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 480, - "Name": "Stuck With Me", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 135523, - "Bytes": 4431357, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 17, - "CustomerId": 25, - "InvoiceDate": "2009-03-06T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 5.94, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 481, - "Name": "Hitchin' A Ride", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 171546, - "Bytes": 5616891, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 482, - "Name": "Good Riddance (Time Of Your Life)", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 153600, - "Bytes": 5075241, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 483, - "Name": "Redundant", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 198164, - "Bytes": 6481753, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 484, - "Name": "Nice Guys Finish Last", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 170187, - "Bytes": 5604618, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 17, - "CustomerId": 25, - "InvoiceDate": "2009-03-06T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 5.94, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 485, - "Name": "Minority", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 168803, - "Bytes": 5535061, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 333, - "CustomerId": 30, - "InvoiceDate": "2013-01-02T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 8.91, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 486, - "Name": "Warning", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 221910, - "Bytes": 7343176, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 487, - "Name": "Waiting", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 192757, - "Bytes": 6316430, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 488, - "Name": "Macy's Day Parade", - "AlbumId": 39, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Milliseconds": 213420, - "Bytes": 7075573, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 17, - "CustomerId": 25, - "InvoiceDate": "2009-03-06T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 5.94, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 89, - "Title": "American Idiot", - "ArtistId": 54, - "Tracks": [ - { - "TrackId": 1133, - "Name": "American Idiot", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong, Mike Dirnt, Tr� Cool", - "Milliseconds": 174419, - "Bytes": 5705793, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1134, - "Name": "Jesus Of Suburbia / City Of The Damned / I Don't Care / Dearly Beloved / Tales Of Another Broken Home", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong/Green Day", - "Milliseconds": 548336, - "Bytes": 17875209, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 248, - "CustomerId": 40, - "InvoiceDate": "2011-12-24T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 5.94, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1135, - "Name": "Holiday", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billie Joe Armstrong, Mike Dirnt, Tr� Cool", - "Milliseconds": 232724, - "Bytes": 7599602, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 139, - "CustomerId": 51, - "InvoiceDate": "2010-08-31T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 0.99, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1136, - "Name": "Boulevard Of Broken Dreams", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike Dint, Billie Joe, Tr� Cool", - "Milliseconds": 260858, - "Bytes": 8485122, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 140, - "CustomerId": 52, - "InvoiceDate": "2010-09-13T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 1.98, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1137, - "Name": "Are We The Waiting", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Green Day", - "Milliseconds": 163004, - "Bytes": 5328329, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 140, - "CustomerId": 52, - "InvoiceDate": "2010-09-13T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 1.98, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1138, - "Name": "St. Jimmy", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Green Day", - "Milliseconds": 175307, - "Bytes": 5716589, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 248, - "CustomerId": 40, - "InvoiceDate": "2011-12-24T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 5.94, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1139, - "Name": "Give Me Novacaine", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Green Day", - "Milliseconds": 205871, - "Bytes": 6752485, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 141, - "CustomerId": 54, - "InvoiceDate": "2010-09-13T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 1.98, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1140, - "Name": "She's A Rebel", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Green Day", - "Milliseconds": 120528, - "Bytes": 3901226, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1141, - "Name": "Extraordinary Girl", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Green Day", - "Milliseconds": 214021, - "Bytes": 6975177, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 141, - "CustomerId": 54, - "InvoiceDate": "2010-09-13T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 1.98, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1142, - "Name": "Letterbomb", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Green Day", - "Milliseconds": 246151, - "Bytes": 7980902, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 248, - "CustomerId": 40, - "InvoiceDate": "2011-12-24T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 5.94, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1143, - "Name": "Wake Me Up When September Ends", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike Dint, Billie Joe, Tr� Cool", - "Milliseconds": 285753, - "Bytes": 9325597, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 142, - "CustomerId": 56, - "InvoiceDate": "2010-09-14T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 3.96, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1144, - "Name": "Homecoming / The Death Of St. Jimmy / East 12th St. / Nobody Likes You / Rock And Roll Girlfriend / We're Coming Home Again", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike Dirnt/Tr� Cool", - "Milliseconds": 558602, - "Bytes": 18139840, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1145, - "Name": "Whatsername", - "AlbumId": 89, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Green Day", - "Milliseconds": 252316, - "Bytes": 8244843, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 142, - "CustomerId": 56, - "InvoiceDate": "2010-09-14T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 3.96, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 55, - "Name": "David Coverdale", - "Albums": [ - { - "AlbumId": 40, - "Title": "Into The Light", - "ArtistId": 55, - "Tracks": [ - { - "TrackId": 489, - "Name": "Into The Light", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale", - "Milliseconds": 76303, - "Bytes": 2452653, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 490, - "Name": "River Song", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale", - "Milliseconds": 439510, - "Bytes": 14359478, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 491, - "Name": "She Give Me ...", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale", - "Milliseconds": 252551, - "Bytes": 8385478, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 492, - "Name": "Don't You Cry", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale", - "Milliseconds": 347036, - "Bytes": 11269612, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 17, - "CustomerId": 25, - "InvoiceDate": "2009-03-06T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 5.94, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 493, - "Name": "Love Is Blind", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale/Earl Slick", - "Milliseconds": 344999, - "Bytes": 11409720, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 494, - "Name": "Slave", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale/Earl Slick", - "Milliseconds": 291892, - "Bytes": 9425200, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 495, - "Name": "Cry For Love", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bossi/David Coverdale/Earl Slick", - "Milliseconds": 293015, - "Bytes": 9567075, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 496, - "Name": "Living On Love", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bossi/David Coverdale/Earl Slick", - "Milliseconds": 391549, - "Bytes": 12785876, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 17, - "CustomerId": 25, - "InvoiceDate": "2009-03-06T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 5.94, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 497, - "Name": "Midnight Blue", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale/Earl Slick", - "Milliseconds": 298631, - "Bytes": 9750990, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 498, - "Name": "Too Many Tears", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adrian Vanderberg/David Coverdale", - "Milliseconds": 359497, - "Bytes": 11810238, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 499, - "Name": "Don't Lie To Me", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale/Earl Slick", - "Milliseconds": 283585, - "Bytes": 9288007, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 500, - "Name": "Wherever You May Go", - "AlbumId": 40, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Coverdale", - "Milliseconds": 239699, - "Bytes": 7803074, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 17, - "CustomerId": 25, - "InvoiceDate": "2009-03-06T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 5.94, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 56, - "Name": "Gonzaguinha", - "Albums": [ - { - "AlbumId": 41, - "Title": "Meus Momentos", - "ArtistId": 56, - "Tracks": [ - { - "TrackId": 501, - "Name": "Grito De Alerta", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gonzaga Jr.", - "Milliseconds": 202213, - "Bytes": 6539422, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 502, - "Name": "N�o D� Mais Pra Segurar (Explode Cora��o)", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 219768, - "Bytes": 7083012, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 503, - "Name": "Come�aria Tudo Outra Vez", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 196545, - "Bytes": 6473395, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 504, - "Name": "O Que � O Que � ?", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 259291, - "Bytes": 8650647, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 505, - "Name": "Sangrando", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gonzaga Jr/Gonzaguinha", - "Milliseconds": 169717, - "Bytes": 5494406, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 506, - "Name": "Diga L�, Cora��o", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 255921, - "Bytes": 8280636, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 507, - "Name": "Lindo Lago Do Amor", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gonzaga Jr.", - "Milliseconds": 249678, - "Bytes": 8353191, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 508, - "Name": "Eu Apenas Queria Que Vo�� Soubesse", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 155637, - "Bytes": 5130056, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 228, - "CustomerId": 50, - "InvoiceDate": "2011-09-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 8.91, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 509, - "Name": "Com A Perna No Mundo", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gonzaga Jr.", - "Milliseconds": 227448, - "Bytes": 7747108, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 510, - "Name": "E Vamos � Luta", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 222406, - "Bytes": 7585112, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 511, - "Name": "Um Homem Tamb�m Chora (Guerreiro Menino)", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 207229, - "Bytes": 6854219, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 512, - "Name": "Comportamento Geral", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gonzaga Jr", - "Milliseconds": 181577, - "Bytes": 5997444, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 513, - "Name": "Ponto De Interroga��o", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 180950, - "Bytes": 5946265, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 514, - "Name": "Espere Por Mim, Morena", - "AlbumId": 41, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gonzaguinha", - "Milliseconds": 207072, - "Bytes": 6796523, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 57, - "Name": "Os Mutantes", - "Albums": [ - { - "AlbumId": 42, - "Title": "Minha Hist�ria", - "ArtistId": 57, - "Tracks": [ - { - "TrackId": 529, - "Name": "Balada Do Louco", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Baptista - Rita Lee", - "Milliseconds": 241057, - "Bytes": 7852328, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 530, - "Name": "Ando Meio Desligado", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Baptista - Rita Lee - S�rgio Dias", - "Milliseconds": 287817, - "Bytes": 9484504, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 531, - "Name": "Top Top", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Os Mutantes - Arnolpho Lima Filho", - "Milliseconds": 146938, - "Bytes": 4875374, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 123, - "CustomerId": 11, - "InvoiceDate": "2010-06-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 8.91, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 532, - "Name": "Baby", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Caetano Veloso", - "Milliseconds": 177188, - "Bytes": 5798202, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 533, - "Name": "A E O Z", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mutantes", - "Milliseconds": 518556, - "Bytes": 16873005, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 534, - "Name": "Panis Et Circenses", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Caetano Veloso - Gilberto Gil", - "Milliseconds": 125152, - "Bytes": 4069688, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 535, - "Name": "Ch�o De Estrelas", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Orestes Barbosa-S�lvio Caldas", - "Milliseconds": 284813, - "Bytes": 9433620, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 536, - "Name": "Vida De Cachorro", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rita Lee - Arnaldo Baptista - S�rgio Baptista", - "Milliseconds": 195186, - "Bytes": 6411149, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 537, - "Name": "Bat Macumba", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Gilberto Gil - Caetano Veloso", - "Milliseconds": 187794, - "Bytes": 6295223, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 538, - "Name": "Desculpe Babe", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Baptista - Rita Lee", - "Milliseconds": 170422, - "Bytes": 5637959, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 539, - "Name": "Rita Lee", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Baptista/Rita Lee/S�rgio Dias", - "Milliseconds": 189257, - "Bytes": 6270503, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 540, - "Name": "Posso Perder Minha Mulher, Minha M�e, Desde Que Eu Tenha O Rock And Roll", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Baptista - Rita Lee - Arnolpho Lima Filho", - "Milliseconds": 222955, - "Bytes": 7346254, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 541, - "Name": "Banho De Lua", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "B. de Filippi - F. Migliaci - Vers�o: Fred Jorge", - "Milliseconds": 221831, - "Bytes": 7232123, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 542, - "Name": "Meu Refrigerador N�o Funciona", - "AlbumId": 42, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Baptista - Rita Lee - S�rgio Dias", - "Milliseconds": 382981, - "Bytes": 12495906, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 58, - "Name": "Deep Purple", - "Albums": [ - { - "AlbumId": 43, - "Title": "MK III The Final Concerts [Disc 1]", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 543, - "Name": "Burn", - "AlbumId": 43, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Coverdale/Lord/Paice", - "Milliseconds": 453955, - "Bytes": 14775708, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 544, - "Name": "Stormbringer", - "AlbumId": 43, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Coverdale", - "Milliseconds": 277133, - "Bytes": 9050022, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 545, - "Name": "Gypsy", - "AlbumId": 43, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Coverdale/Hughes/Lord/Paice", - "Milliseconds": 339173, - "Bytes": 11046952, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 546, - "Name": "Lady Double Dealer", - "AlbumId": 43, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Coverdale", - "Milliseconds": 233586, - "Bytes": 7608759, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 547, - "Name": "Mistreated", - "AlbumId": 43, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Coverdale", - "Milliseconds": 758648, - "Bytes": 24596235, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 548, - "Name": "Smoke On The Water", - "AlbumId": 43, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gillan/Glover/Lord/Paice", - "Milliseconds": 618031, - "Bytes": 20103125, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 18, - "CustomerId": 31, - "InvoiceDate": "2009-03-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 8.91, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 549, - "Name": "You Fool No One", - "AlbumId": 43, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Coverdale/Lord/Paice", - "Milliseconds": 804101, - "Bytes": 26369966, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 50, - "Title": "The Final Concerts (Disc 2)", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 620, - "Name": "Space Truckin'", - "AlbumId": 50, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore/Gillan/Glover/Lord/Paice", - "Milliseconds": 1196094, - "Bytes": 39267613, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 621, - "Name": "Going Down / Highway Star", - "AlbumId": 50, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gillan/Glover/Lord/Nix - Blackmore/Paice", - "Milliseconds": 913658, - "Bytes": 29846063, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 622, - "Name": "Mistreated (Alternate Version)", - "AlbumId": 50, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore/Coverdale", - "Milliseconds": 854700, - "Bytes": 27775442, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 623, - "Name": "You Fool No One (Alternate Version)", - "AlbumId": 50, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore/Coverdale/Lord/Paice", - "Milliseconds": 763924, - "Bytes": 24887209, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 58, - "Title": "Come Taste The Band", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 745, - "Name": "Comin' Home", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bolin/Coverdale/Paice", - "Milliseconds": 235781, - "Bytes": 7644604, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 746, - "Name": "Lady Luck", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Cook/Coverdale", - "Milliseconds": 168202, - "Bytes": 5501379, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 747, - "Name": "Gettin' Tighter", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bolin/Hughes", - "Milliseconds": 218044, - "Bytes": 7176909, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 748, - "Name": "Dealer", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bolin/Coverdale", - "Milliseconds": 230922, - "Bytes": 7591066, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 749, - "Name": "I Need Love", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bolin/Coverdale", - "Milliseconds": 263836, - "Bytes": 8701064, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 750, - "Name": "Drifter", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bolin/Coverdale", - "Milliseconds": 242834, - "Bytes": 8001505, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 751, - "Name": "Love Child", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bolin/Coverdale", - "Milliseconds": 188160, - "Bytes": 6173806, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 752, - "Name": "This Time Around / Owed to 'G' [Instrumental]", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bolin/Hughes/Lord", - "Milliseconds": 370102, - "Bytes": 11995679, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 753, - "Name": "You Keep On Moving", - "AlbumId": 58, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Coverdale/Hughes", - "Milliseconds": 319111, - "Bytes": 10447868, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 59, - "Title": "Deep Purple In Rock", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 754, - "Name": "Speed King", - "AlbumId": 59, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Milliseconds": 264385, - "Bytes": 8587578, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 755, - "Name": "Bloodsucker", - "AlbumId": 59, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Milliseconds": 256261, - "Bytes": 8344405, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 756, - "Name": "Child In Time", - "AlbumId": 59, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Milliseconds": 620460, - "Bytes": 20230089, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 757, - "Name": "Flight Of The Rat", - "AlbumId": 59, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Milliseconds": 478302, - "Bytes": 15563967, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 758, - "Name": "Into The Fire", - "AlbumId": 59, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Milliseconds": 210259, - "Bytes": 6849310, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 759, - "Name": "Living Wreck", - "AlbumId": 59, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Milliseconds": 274886, - "Bytes": 8993056, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 760, - "Name": "Hard Lovin' Man", - "AlbumId": 59, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Milliseconds": 431203, - "Bytes": 13931179, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 60, - "Title": "Fireball", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 761, - "Name": "Fireball", - "AlbumId": 60, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 204721, - "Bytes": 6714807, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 762, - "Name": "No No No", - "AlbumId": 60, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 414902, - "Bytes": 13646606, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 763, - "Name": "Strange Kind Of Woman", - "AlbumId": 60, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 247092, - "Bytes": 8072036, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 764, - "Name": "Anyone's Daughter", - "AlbumId": 60, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 284682, - "Bytes": 9354480, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 765, - "Name": "The Mule", - "AlbumId": 60, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 322063, - "Bytes": 10638390, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 766, - "Name": "Fools", - "AlbumId": 60, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 500427, - "Bytes": 16279366, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 767, - "Name": "No One Came", - "AlbumId": 60, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 385880, - "Bytes": 12643813, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 61, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 768, - "Name": "Knocking At Your Back Door", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover", - "Milliseconds": 424829, - "Bytes": 13779332, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 769, - "Name": "Bad Attitude", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord", - "Milliseconds": 307905, - "Bytes": 10035180, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 770, - "Name": "Child In Time (Son Of Aleric - Instrumental)", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 602880, - "Bytes": 19712753, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 771, - "Name": "Nobody's Home", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 243017, - "Bytes": 7929493, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 772, - "Name": "Black Night", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 368770, - "Bytes": 12058906, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 773, - "Name": "Perfect Strangers", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover", - "Milliseconds": 321149, - "Bytes": 10445353, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 774, - "Name": "The Unwritten Law", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Ian Paice", - "Milliseconds": 295053, - "Bytes": 9740361, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 775, - "Name": "Call Of The Wild", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord", - "Milliseconds": 293851, - "Bytes": 9575295, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 776, - "Name": "Hush", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "South", - "Milliseconds": 213054, - "Bytes": 6944928, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 777, - "Name": "Smoke On The Water", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 464378, - "Bytes": 15180849, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 778, - "Name": "Space Trucking", - "AlbumId": 61, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Milliseconds": 341185, - "Bytes": 11122183, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 62, - "Title": "Machine Head", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 779, - "Name": "Highway Star", - "AlbumId": 62, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Milliseconds": 368770, - "Bytes": 12012452, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 780, - "Name": "Maybe I'm A Leo", - "AlbumId": 62, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Milliseconds": 290455, - "Bytes": 9502646, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 781, - "Name": "Pictures Of Home", - "AlbumId": 62, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Milliseconds": 303777, - "Bytes": 9903835, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 782, - "Name": "Never Before", - "AlbumId": 62, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Milliseconds": 239830, - "Bytes": 7832790, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 783, - "Name": "Smoke On The Water", - "AlbumId": 62, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Milliseconds": 340871, - "Bytes": 11246496, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 784, - "Name": "Lazy", - "AlbumId": 62, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Milliseconds": 442096, - "Bytes": 14397671, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 785, - "Name": "Space Truckin'", - "AlbumId": 62, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Milliseconds": 272796, - "Bytes": 8981030, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 63, - "Title": "Purpendicular", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 786, - "Name": "Vavoom : Ted The Mechanic", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 257384, - "Bytes": 8510755, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 787, - "Name": "Loosen My Strings", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 359680, - "Bytes": 11702232, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 788, - "Name": "Soon Forgotten", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 287791, - "Bytes": 9401383, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 789, - "Name": "Sometimes I Feel Like Screaming", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 451840, - "Bytes": 14789410, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 790, - "Name": "Cascades : I'm Not Your Lover", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 283689, - "Bytes": 9209693, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 791, - "Name": "The Aviator", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 320992, - "Bytes": 10532053, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 792, - "Name": "Rosa's Cantina", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 312372, - "Bytes": 10323804, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 793, - "Name": "A Castle Full Of Rascals", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 311693, - "Bytes": 10159566, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 794, - "Name": "A Touch Away", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 276323, - "Bytes": 9098561, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 795, - "Name": "Hey Cisco", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 354089, - "Bytes": 11600029, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 796, - "Name": "Somebody Stole My Guitar", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 249443, - "Bytes": 8180421, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 797, - "Name": "The Purpendicular Waltz", - "AlbumId": 63, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Milliseconds": 283924, - "Bytes": 9299131, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 64, - "Title": "Slaves And Masters", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 798, - "Name": "King Of Dreams", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Glover, Turner", - "Milliseconds": 328385, - "Bytes": 10733847, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 799, - "Name": "The Cut Runs Deep", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "Milliseconds": 342752, - "Bytes": 11191650, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 800, - "Name": "Fire In The Basement", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "Milliseconds": 283977, - "Bytes": 9267550, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 801, - "Name": "Truth Hurts", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Glover, Turner", - "Milliseconds": 314827, - "Bytes": 10224612, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 802, - "Name": "Breakfast In Bed", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Glover, Turner", - "Milliseconds": 317126, - "Bytes": 10323804, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 803, - "Name": "Love Conquers All", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Glover, Turner", - "Milliseconds": 227186, - "Bytes": 7328516, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 804, - "Name": "Fortuneteller", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "Milliseconds": 349335, - "Bytes": 11369671, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 805, - "Name": "Too Much Is Not Enough", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Turner, Held, Greenwood", - "Milliseconds": 257724, - "Bytes": 8382800, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 806, - "Name": "Wicked Ways", - "AlbumId": 64, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "Milliseconds": 393691, - "Bytes": 12826582, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 65, - "Title": "Stormbringer", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 807, - "Name": "Stormbringer", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "Milliseconds": 246413, - "Bytes": 8044864, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 808, - "Name": "Love Don't Mean a Thing", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "Milliseconds": 263862, - "Bytes": 8675026, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 809, - "Name": "Holy Man", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/J.Lord/John Lord", - "Milliseconds": 270236, - "Bytes": 8818093, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 810, - "Name": "Hold On", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdal/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord", - "Milliseconds": 306860, - "Bytes": 10022428, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 811, - "Name": "Lady Double Dealer", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "Milliseconds": 201482, - "Bytes": 6554330, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 812, - "Name": "You Can't Do it Right (With the One You Love)", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/R.Blackmore/Ritchie Blackmore", - "Milliseconds": 203755, - "Bytes": 6709579, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 813, - "Name": "High Ball Shooter", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "Milliseconds": 267833, - "Bytes": 8772471, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 814, - "Name": "The Gypsy", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "Milliseconds": 242886, - "Bytes": 7946614, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 815, - "Name": "Soldier Of Fortune", - "AlbumId": 65, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "Milliseconds": 193750, - "Bytes": 6315321, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 66, - "Title": "The Battle Rages On", - "ArtistId": 58, - "Tracks": [ - { - "TrackId": 816, - "Name": "The Battle Rages On", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "ian paice/jon lord", - "Milliseconds": 356963, - "Bytes": 11626228, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 817, - "Name": "Lick It Up", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "roger glover", - "Milliseconds": 240274, - "Bytes": 7792604, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 818, - "Name": "Anya", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "jon lord/roger glover", - "Milliseconds": 392437, - "Bytes": 12754921, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 819, - "Name": "Talk About Love", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "roger glover", - "Milliseconds": 247823, - "Bytes": 8072171, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 820, - "Name": "Time To Kill", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "roger glover", - "Milliseconds": 351033, - "Bytes": 11354742, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 821, - "Name": "Ramshackle Man", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "roger glover", - "Milliseconds": 334445, - "Bytes": 10874679, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 822, - "Name": "A Twist In The Tail", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "roger glover", - "Milliseconds": 257462, - "Bytes": 8413103, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 823, - "Name": "Nasty Piece Of Work", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "jon lord/roger glover", - "Milliseconds": 276662, - "Bytes": 9076997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 824, - "Name": "Solitaire", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "roger glover", - "Milliseconds": 282226, - "Bytes": 9157021, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 825, - "Name": "One Man's Meat", - "AlbumId": 66, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "roger glover", - "Milliseconds": 278804, - "Bytes": 9068960, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 59, - "Name": "Santana", - "Albums": [ - { - "AlbumId": 46, - "Title": "Supernatural", - "ArtistId": 59, - "Tracks": [ - { - "TrackId": 570, - "Name": "(Da Le) Yaleo", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Santana", - "Milliseconds": 353488, - "Bytes": 11769507, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 571, - "Name": "Love Of My Life", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Carlos Santana \u0026 Dave Matthews", - "Milliseconds": 347820, - "Bytes": 11634337, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 572, - "Name": "Put Your Lights On", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "E. Shrody", - "Milliseconds": 285178, - "Bytes": 9394769, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 573, - "Name": "Africa Bamba", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "I. Toure, S. Tidiane Toure, Carlos Santana \u0026 K. Perazzo", - "Milliseconds": 282827, - "Bytes": 9492487, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 574, - "Name": "Smooth", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "M. Itaal Shur \u0026 Rob Thomas", - "Milliseconds": 298161, - "Bytes": 9867455, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 575, - "Name": "Do You Like The Way", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "L. Hill", - "Milliseconds": 354899, - "Bytes": 11741062, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 576, - "Name": "Maria Maria", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "W. Jean, J. Duplessis, Carlos Santana, K. Perazzo \u0026 R. Rekow", - "Milliseconds": 262635, - "Bytes": 8664601, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 577, - "Name": "Migra", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "R. Taha, Carlos Santana \u0026 T. Lindsay", - "Milliseconds": 329064, - "Bytes": 10963305, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 578, - "Name": "Corazon Espinado", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "F. Olivera", - "Milliseconds": 276114, - "Bytes": 9206802, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 579, - "Name": "Wishing It Was", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eale-Eye Cherry, M. Simpson, J. King \u0026 M. Nishita", - "Milliseconds": 292832, - "Bytes": 9771348, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 580, - "Name": "El Farol", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Carlos Santana \u0026 KC Porter", - "Milliseconds": 291160, - "Bytes": 9599353, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 581, - "Name": "Primavera", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "KC Porter \u0026 JB Eckl", - "Milliseconds": 378618, - "Bytes": 12504234, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 582, - "Name": "The Calling", - "AlbumId": 46, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Carlos Santana \u0026 C. Thompson", - "Milliseconds": 747755, - "Bytes": 24703884, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 197, - "Title": "Santana - As Years Go By", - "ArtistId": 59, - "Tracks": [ - { - "TrackId": 2420, - "Name": "Jingo", - "AlbumId": 197, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "M.Babatunde Olantunji", - "Milliseconds": 592953, - "Bytes": 19736495, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2421, - "Name": "El Corazon Manda", - "AlbumId": 197, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "E.Weiss", - "Milliseconds": 713534, - "Bytes": 23519583, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2422, - "Name": "La Puesta Del Sol", - "AlbumId": 197, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "E.Weiss", - "Milliseconds": 628062, - "Bytes": 20614621, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2423, - "Name": "Persuasion", - "AlbumId": 197, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Carlos Santana", - "Milliseconds": 318432, - "Bytes": 10354751, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2424, - "Name": "As The Years Go by", - "AlbumId": 197, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Albert King", - "Milliseconds": 233064, - "Bytes": 7566829, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2425, - "Name": "Soul Sacrifice", - "AlbumId": 197, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Carlos Santana", - "Milliseconds": 296437, - "Bytes": 9801120, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2426, - "Name": "Fried Neckbones And Home Fries", - "AlbumId": 197, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "W.Correa", - "Milliseconds": 638563, - "Bytes": 20939646, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2427, - "Name": "Santana Jam", - "AlbumId": 197, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Carlos Santana", - "Milliseconds": 882834, - "Bytes": 29207100, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 198, - "Title": "Santana Live", - "ArtistId": 59, - "Tracks": [ - { - "TrackId": 2428, - "Name": "Evil Ways", - "AlbumId": 198, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 475402, - "Bytes": 15289235, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2429, - "Name": "We've Got To Get Together/Jingo", - "AlbumId": 198, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 1070027, - "Bytes": 34618222, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2430, - "Name": "Rock Me", - "AlbumId": 198, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 94720, - "Bytes": 3037596, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2431, - "Name": "Just Ain't Good Enough", - "AlbumId": 198, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 850259, - "Bytes": 27489067, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2432, - "Name": "Funky Piano", - "AlbumId": 198, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 934791, - "Bytes": 30200730, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2433, - "Name": "The Way You Do To Mer", - "AlbumId": 198, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 618344, - "Bytes": 20028702, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 60, - "Name": "Santana Feat. Dave Matthews", - "Albums": null - }, - { - "ArtistId": 61, - "Name": "Santana Feat. Everlast", - "Albums": null - }, - { - "ArtistId": 62, - "Name": "Santana Feat. Rob Thomas", - "Albums": null - }, - { - "ArtistId": 63, - "Name": "Santana Feat. Lauryn Hill \u0026 Cee-Lo", - "Albums": null - }, - { - "ArtistId": 64, - "Name": "Santana Feat. The Project G\u0026B", - "Albums": null - }, - { - "ArtistId": 65, - "Name": "Santana Feat. Man�", - "Albums": null - }, - { - "ArtistId": 66, - "Name": "Santana Feat. Eagle-Eye Cherry", - "Albums": null - }, - { - "ArtistId": 67, - "Name": "Santana Feat. Eric Clapton", - "Albums": null - }, - { - "ArtistId": 68, - "Name": "Miles Davis", - "Albums": [ - { - "AlbumId": 48, - "Title": "The Essential Miles Davis [Disc 1]", - "ArtistId": 68, - "Tracks": [ - { - "TrackId": 597, - "Name": "Now's The Time", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 197459, - "Bytes": 6358868, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 18, - "Name": "On-The-Go 1" - } - ], - "Invoices": null - }, - { - "TrackId": 598, - "Name": "Jeru", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 193410, - "Bytes": 6222536, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 599, - "Name": "Compulsion", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 345025, - "Bytes": 11254474, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 600, - "Name": "Tempus Fugit", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 231784, - "Bytes": 7548434, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 601, - "Name": "Walkin'", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 807392, - "Bytes": 26411634, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 602, - "Name": "'Round Midnight", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 357459, - "Bytes": 11590284, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 603, - "Name": "Bye Bye Blackbird", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 476003, - "Bytes": 15549224, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 604, - "Name": "New Rhumba", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 277968, - "Bytes": 9018024, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 605, - "Name": "Generique", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 168777, - "Bytes": 5437017, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 606, - "Name": "Summertime", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 200437, - "Bytes": 6461370, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 607, - "Name": "So What", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 564009, - "Bytes": 18360449, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 608, - "Name": "The Pan Piper", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 233769, - "Bytes": 7593713, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 609, - "Name": "Someday My Prince Will Come", - "AlbumId": 48, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 544078, - "Bytes": 17890773, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 49, - "Title": "The Essential Miles Davis [Disc 2]", - "ArtistId": 68, - "Tracks": [ - { - "TrackId": 610, - "Name": "My Funny Valentine (Live)", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 907520, - "Bytes": 29416781, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 611, - "Name": "E.S.P.", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 330684, - "Bytes": 11079866, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 334, - "CustomerId": 39, - "InvoiceDate": "2013-01-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 13.86, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 612, - "Name": "Nefertiti", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 473495, - "Bytes": 15478450, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 613, - "Name": "Petits Machins (Little Stuff)", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 487392, - "Bytes": 16131272, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 614, - "Name": "Miles Runs The Voodoo Down", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 843964, - "Bytes": 27967919, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 615, - "Name": "Little Church (Live)", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 196101, - "Bytes": 6273225, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 616, - "Name": "Black Satin", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 316682, - "Bytes": 10529483, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 617, - "Name": "Jean Pierre (Live)", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 243461, - "Bytes": 7955114, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 618, - "Name": "Time After Time", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 220734, - "Bytes": 7292197, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 619, - "Name": "Portia", - "AlbumId": 49, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis", - "Milliseconds": 378775, - "Bytes": 12520126, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 157, - "Title": "Miles Ahead", - "ArtistId": 68, - "Tracks": [ - { - "TrackId": 1902, - "Name": "Springsville", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "J. Carisi", - "Milliseconds": 207725, - "Bytes": 6776219, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1903, - "Name": "The Maids Of Cadiz", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "L. Delibes", - "Milliseconds": 233534, - "Bytes": 7505275, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1904, - "Name": "The Duke", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Dave Brubeck", - "Milliseconds": 214961, - "Bytes": 6977626, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1905, - "Name": "My Ship", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Ira Gershwin, Kurt Weill", - "Milliseconds": 268016, - "Bytes": 8581144, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1906, - "Name": "Miles Ahead", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Miles Davis, Gil Evans", - "Milliseconds": 209893, - "Bytes": 6807707, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1907, - "Name": "Blues For Pablo", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Gil Evans", - "Milliseconds": 318328, - "Bytes": 10218398, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1908, - "Name": "New Rhumba", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "A. Jamal", - "Milliseconds": 276871, - "Bytes": 8980400, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1909, - "Name": "The Meaning Of The Blues", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "R. Troup, L. Worth", - "Milliseconds": 168594, - "Bytes": 5395412, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1910, - "Name": "Lament", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "J.J. Johnson", - "Milliseconds": 134191, - "Bytes": 4293394, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1911, - "Name": "I Don't Wanna Be Kissed (By Anyone But You)", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "H. Spina, J. Elliott", - "Milliseconds": 191320, - "Bytes": 6219487, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 165, - "CustomerId": 3, - "InvoiceDate": "2010-12-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 8.91, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1912, - "Name": "Springsville (Alternate Take)", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "J. Carisi", - "Milliseconds": 196388, - "Bytes": 6382079, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1913, - "Name": "Blues For Pablo (Alternate Take)", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Gil Evans", - "Milliseconds": 212558, - "Bytes": 6900619, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1914, - "Name": "The Meaning Of The Blues/Lament (Alternate Take)", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "J.J. Johnson/R. Troup, L. Worth", - "Milliseconds": 309786, - "Bytes": 9912387, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1915, - "Name": "I Don't Wanna Be Kissed (By Anyone But You) (Alternate Take)", - "AlbumId": 157, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "H. Spina, J. Elliott", - "Milliseconds": 192078, - "Bytes": 6254796, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 69, - "Name": "Gene Krupa", - "Albums": [ - { - "AlbumId": 51, - "Title": "Up An' Atom", - "ArtistId": 69, - "Tracks": [ - { - "TrackId": 624, - "Name": "Jeepers Creepers", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 185965, - "Bytes": 5991903, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 625, - "Name": "Blue Rythm Fantasy", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 348212, - "Bytes": 11204006, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 335, - "CustomerId": 53, - "InvoiceDate": "2013-01-15T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 0.99, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 626, - "Name": "Drum Boogie", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 191555, - "Bytes": 6185636, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 336, - "CustomerId": 54, - "InvoiceDate": "2013-01-28T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 1.98, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 627, - "Name": "Let Me Off Uptown", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 187637, - "Bytes": 6034685, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 336, - "CustomerId": 54, - "InvoiceDate": "2013-01-28T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 1.98, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 628, - "Name": "Leave Us Leap", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 182726, - "Bytes": 5898810, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 629, - "Name": "Opus No.1", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 179800, - "Bytes": 5846041, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 337, - "CustomerId": 56, - "InvoiceDate": "2013-01-28T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 1.98, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 630, - "Name": "Boogie Blues", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 204199, - "Bytes": 6603153, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 631, - "Name": "How High The Moon", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 201430, - "Bytes": 6529487, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 337, - "CustomerId": 56, - "InvoiceDate": "2013-01-28T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 1.98, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 632, - "Name": "Disc Jockey Jump", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 193149, - "Bytes": 6260820, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 633, - "Name": "Up An' Atom", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 179565, - "Bytes": 5822645, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 338, - "CustomerId": 58, - "InvoiceDate": "2013-01-29T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 3.96, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 634, - "Name": "Bop Boogie", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 189596, - "Bytes": 6093124, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 229, - "CustomerId": 59, - "InvoiceDate": "2011-09-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 13.86, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 635, - "Name": "Lemon Drop", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 194089, - "Bytes": 6287531, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 338, - "CustomerId": 58, - "InvoiceDate": "2013-01-29T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 3.96, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 636, - "Name": "Coronation Drop", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 176222, - "Bytes": 5899898, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 637, - "Name": "Overtime", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 163030, - "Bytes": 5432236, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 338, - "CustomerId": 58, - "InvoiceDate": "2013-01-29T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 3.96, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 638, - "Name": "Imagination", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 289306, - "Bytes": 9444385, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 639, - "Name": "Don't Take Your Love From Me", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 282331, - "Bytes": 9244238, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 338, - "CustomerId": 58, - "InvoiceDate": "2013-01-29T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 3.96, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 640, - "Name": "Midget", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 217025, - "Bytes": 7257663, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 641, - "Name": "I'm Coming Virginia", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 280163, - "Bytes": 9209827, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 642, - "Name": "Payin' Them Dues Blues", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 198556, - "Bytes": 6536918, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 643, - "Name": "Jungle Drums", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 199627, - "Bytes": 6546063, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 339, - "CustomerId": 3, - "InvoiceDate": "2013-01-30T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 5.94, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 644, - "Name": "Showcase", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 201560, - "Bytes": 6697510, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 645, - "Name": "Swedish Schnapps", - "AlbumId": 51, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": null, - "Milliseconds": 191268, - "Bytes": 6359750, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 70, - "Name": "Toquinho \u0026 Vin�cius", - "Albums": [ - { - "AlbumId": 52, - "Title": "Vin�cius De Moraes - Sem Limite", - "ArtistId": 70, - "Tracks": [ - { - "TrackId": 646, - "Name": "Samba Da B�n��o", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 409965, - "Bytes": 13490008, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 647, - "Name": "Pot-Pourri N.� 4", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 392437, - "Bytes": 13125975, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 339, - "CustomerId": 3, - "InvoiceDate": "2013-01-30T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 5.94, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 648, - "Name": "Onde Anda Voc�", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 168437, - "Bytes": 5550356, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 230, - "CustomerId": 14, - "InvoiceDate": "2011-10-08T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 0.99, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 649, - "Name": "Samba Da Volta", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 170631, - "Bytes": 5676090, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 231, - "CustomerId": 15, - "InvoiceDate": "2011-10-21T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 1.98, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 650, - "Name": "Canto De Ossanha", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 204956, - "Bytes": 6771624, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 231, - "CustomerId": 15, - "InvoiceDate": "2011-10-21T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 1.98, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 651, - "Name": "Pot-Pourri N.� 5", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 219898, - "Bytes": 7117769, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 339, - "CustomerId": 3, - "InvoiceDate": "2013-01-30T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 5.94, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 652, - "Name": "Formosa", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 137482, - "Bytes": 4560873, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 232, - "CustomerId": 17, - "InvoiceDate": "2011-10-21T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 1.98, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 653, - "Name": "Como � Duro Trabalhar", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 226168, - "Bytes": 7541177, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 654, - "Name": "Minha Namorada", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 244297, - "Bytes": 7927967, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 232, - "CustomerId": 17, - "InvoiceDate": "2011-10-21T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 1.98, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 655, - "Name": "Por Que Ser�", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 162142, - "Bytes": 5371483, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 339, - "CustomerId": 3, - "InvoiceDate": "2013-01-30T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 5.94, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 656, - "Name": "Berimbau", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 190667, - "Bytes": 6335548, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 233, - "CustomerId": 19, - "InvoiceDate": "2011-10-22T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 3.96, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 657, - "Name": "Deixa", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 179826, - "Bytes": 5932799, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 124, - "CustomerId": 20, - "InvoiceDate": "2010-06-22T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 13.86, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 658, - "Name": "Pot-Pourri N.� 2", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 211748, - "Bytes": 6878359, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 233, - "CustomerId": 19, - "InvoiceDate": "2011-10-22T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 3.96, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 659, - "Name": "Samba Em Prel�dio", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 212636, - "Bytes": 6923473, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 339, - "CustomerId": 3, - "InvoiceDate": "2013-01-30T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 5.94, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 660, - "Name": "Carta Ao Tom 74", - "AlbumId": 52, - "MediaTypeId": 1, - "GenreId": 11, - "Composer": null, - "Milliseconds": 162560, - "Bytes": 5382354, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 11, - "Name": "Bossa Nova" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 233, - "CustomerId": 19, - "InvoiceDate": "2011-10-22T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 3.96, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 71, - "Name": "Vin�cius De Moraes \u0026 Baden Powell", - "Albums": null - }, - { - "ArtistId": 72, - "Name": "Vin�cius De Moraes", - "Albums": [ - { - "AlbumId": 247, - "Title": "Vinicius De Moraes", - "ArtistId": 72, - "Tracks": [ - { - "TrackId": 3117, - "Name": "Pela Luz Dos Olhos Teus", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 119196, - "Bytes": 3905715, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3118, - "Name": "A Bencao E Outros", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 421093, - "Bytes": 14234427, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3119, - "Name": "Tudo Na Mais Santa Paz", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 222406, - "Bytes": 7426757, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3120, - "Name": "O Velho E Aflor", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 275121, - "Bytes": 9126828, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3121, - "Name": "Cotidiano N 2", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 55902, - "Bytes": 1805797, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3122, - "Name": "Adeus", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 221884, - "Bytes": 7259351, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3123, - "Name": "Samba Pra Endrigo", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 259265, - "Bytes": 8823551, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3124, - "Name": "So Por Amor", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 236591, - "Bytes": 7745764, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3125, - "Name": "Meu Pranto Rolou", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 181760, - "Bytes": 6003345, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3126, - "Name": "Mulher Carioca", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 191686, - "Bytes": 6395048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3127, - "Name": "Um Homem Chamado Alfredo", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 151640, - "Bytes": 4976227, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3128, - "Name": "Samba Do Jato", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 220813, - "Bytes": 7357840, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3129, - "Name": "Oi, La", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 167053, - "Bytes": 5562700, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3130, - "Name": "Vinicius, Poeta Do Encontro", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 336431, - "Bytes": 10858776, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3131, - "Name": "Soneto Da Separacao", - "AlbumId": 247, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 193880, - "Bytes": 6277511, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 73, - "Name": "Vin�cius E Qurteto Em Cy", - "Albums": null - }, - { - "ArtistId": 74, - "Name": "Vin�cius E Odette Lara", - "Albums": null - }, - { - "ArtistId": 75, - "Name": "Vinicius, Toquinho \u0026 Quarteto Em Cy", - "Albums": null - }, - { - "ArtistId": 76, - "Name": "Creedence Clearwater Revival", - "Albums": [ - { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1", - "ArtistId": 76, - "Tracks": [ - { - "TrackId": 675, - "Name": "Susie Q", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Hawkins-Lewis-Broadwater", - "Milliseconds": 275565, - "Bytes": 9043825, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 127, - "CustomerId": 37, - "InvoiceDate": "2010-07-13T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 1.98, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 676, - "Name": "I Put A Spell On You", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jay Hawkins", - "Milliseconds": 272091, - "Bytes": 8943000, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 677, - "Name": "Proud Mary", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 189022, - "Bytes": 6229590, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 127, - "CustomerId": 37, - "InvoiceDate": "2010-07-13T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 1.98, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 678, - "Name": "Bad Moon Rising", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 140146, - "Bytes": 4609835, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 234, - "CustomerId": 23, - "InvoiceDate": "2011-10-23T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 5.94, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 679, - "Name": "Lodi", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 191451, - "Bytes": 6260214, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 128, - "CustomerId": 39, - "InvoiceDate": "2010-07-14T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 3.96, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 680, - "Name": "Green River", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 154279, - "Bytes": 5105874, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 19, - "CustomerId": 40, - "InvoiceDate": "2009-03-14T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 13.86, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 681, - "Name": "Commotion", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 162899, - "Bytes": 5354252, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 128, - "CustomerId": 39, - "InvoiceDate": "2010-07-14T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 3.96, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 682, - "Name": "Down On The Corner", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 164858, - "Bytes": 5521804, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 234, - "CustomerId": 23, - "InvoiceDate": "2011-10-23T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 5.94, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 683, - "Name": "Fortunate Son", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 140329, - "Bytes": 4617559, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 128, - "CustomerId": 39, - "InvoiceDate": "2010-07-14T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 3.96, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 684, - "Name": "Travelin' Band", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 129358, - "Bytes": 4270414, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 685, - "Name": "Who'll Stop The Rain", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 149394, - "Bytes": 4899579, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 128, - "CustomerId": 39, - "InvoiceDate": "2010-07-14T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 3.96, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 686, - "Name": "Up Around The Bend", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 162429, - "Bytes": 5368701, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 234, - "CustomerId": 23, - "InvoiceDate": "2011-10-23T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 5.94, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 687, - "Name": "Run Through The Jungle", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 186044, - "Bytes": 6156567, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 688, - "Name": "Lookin' Out My Back Door", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 152946, - "Bytes": 5034670, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 689, - "Name": "Long As I Can See The Light", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 213237, - "Bytes": 6924024, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 129, - "CustomerId": 43, - "InvoiceDate": "2010-07-15T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 5.94, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 690, - "Name": "I Heard It Through The Grapevine", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Whitfield-Strong", - "Milliseconds": 664894, - "Bytes": 21947845, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 691, - "Name": "Have You Ever Seen The Rain?", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 160052, - "Bytes": 5263675, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 692, - "Name": "Hey Tonight", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 162847, - "Bytes": 5343807, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 693, - "Name": "Sweet Hitch-Hiker", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 175490, - "Bytes": 5716603, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 129, - "CustomerId": 43, - "InvoiceDate": "2010-07-15T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 5.94, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 694, - "Name": "Someday Never Comes", - "AlbumId": 54, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J. C. Fogerty", - "Milliseconds": 239360, - "Bytes": 7945235, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 20, - "CustomerId": 54, - "InvoiceDate": "2009-03-22T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 0.99, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2", - "ArtistId": 76, - "Tracks": [ - { - "TrackId": 695, - "Name": "Walking On The Water", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 281286, - "Bytes": 9302129, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 21, - "CustomerId": 55, - "InvoiceDate": "2009-04-04T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 1.98, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 696, - "Name": "Suzie-Q, Pt. 2", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 244114, - "Bytes": 7986637, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 21, - "CustomerId": 55, - "InvoiceDate": "2009-04-04T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 1.98, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 697, - "Name": "Born On The Bayou", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 316630, - "Bytes": 10361866, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 129, - "CustomerId": 43, - "InvoiceDate": "2010-07-15T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 5.94, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 698, - "Name": "Good Golly Miss Molly", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 163604, - "Bytes": 5348175, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 22, - "CustomerId": 57, - "InvoiceDate": "2009-04-04T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 699, - "Name": "Tombstone Shadow", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 218880, - "Bytes": 7209080, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 700, - "Name": "Wrote A Song For Everyone", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 296385, - "Bytes": 9675875, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 22, - "CustomerId": 57, - "InvoiceDate": "2009-04-04T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 701, - "Name": "Night Time Is The Right Time", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 190119, - "Bytes": 6211173, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 129, - "CustomerId": 43, - "InvoiceDate": "2010-07-15T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 5.94, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 702, - "Name": "Cotton Fields", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 178181, - "Bytes": 5919224, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 23, - "CustomerId": 59, - "InvoiceDate": "2009-04-05T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 3.96, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 703, - "Name": "It Came Out Of The Sky", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 176718, - "Bytes": 5807474, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 704, - "Name": "Don't Look Now", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 131918, - "Bytes": 4366455, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 23, - "CustomerId": 59, - "InvoiceDate": "2009-04-05T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 3.96, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 705, - "Name": "The Midnight Special", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 253596, - "Bytes": 8297482, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 129, - "CustomerId": 43, - "InvoiceDate": "2010-07-15T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 5.94, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 706, - "Name": "Before You Accuse Me", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 207804, - "Bytes": 6815126, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 23, - "CustomerId": 59, - "InvoiceDate": "2009-04-05T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 3.96, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 707, - "Name": "My Baby Left Me", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 140460, - "Bytes": 4633440, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 708, - "Name": "Pagan Baby", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 385619, - "Bytes": 12713813, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 23, - "CustomerId": 59, - "InvoiceDate": "2009-04-05T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 3.96, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 709, - "Name": "(Wish I Could) Hideaway", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 228466, - "Bytes": 7432978, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 129, - "CustomerId": 43, - "InvoiceDate": "2010-07-15T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 5.94, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 710, - "Name": "It's Just A Thought", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 237374, - "Bytes": 7778319, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 711, - "Name": "Molina", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 163239, - "Bytes": 5390811, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 712, - "Name": "Born To Move", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 342804, - "Bytes": 11260814, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 24, - "CustomerId": 4, - "InvoiceDate": "2009-04-06T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 5.94, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 713, - "Name": "Lookin' For A Reason", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 209789, - "Bytes": 6933135, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 714, - "Name": "Hello Mary Lou", - "AlbumId": 55, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "J.C. Fogerty", - "Milliseconds": 132832, - "Bytes": 4476563, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 77, - "Name": "C�ssia Eller", - "Albums": [ - { - "AlbumId": 56, - "Title": "C�ssia Eller - Cole��o Sem Limite [Disc 2]", - "ArtistId": 77, - "Tracks": [ - { - "TrackId": 715, - "Name": "Gatas Extraordin�rias", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 212506, - "Bytes": 7095702, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 716, - "Name": "Brasil", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 243696, - "Bytes": 7911683, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 24, - "CustomerId": 4, - "InvoiceDate": "2009-04-06T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 5.94, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 717, - "Name": "Eu Sou Neguinha (Ao Vivo)", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 251768, - "Bytes": 8376000, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 340, - "CustomerId": 9, - "InvoiceDate": "2013-02-02T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 8.91, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 718, - "Name": "Gera��o Coca-Cola (Ao Vivo)", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 228153, - "Bytes": 7573301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 719, - "Name": "Lanterna Dos Afogados", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 204538, - "Bytes": 6714582, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 720, - "Name": "Coron� Antonio Bento", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 200437, - "Bytes": 6713066, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 24, - "CustomerId": 4, - "InvoiceDate": "2009-04-06T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 5.94, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 721, - "Name": "Voc� Passa, Eu Acho Gra�a (Ao Vivo)", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 206733, - "Bytes": 6943576, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 722, - "Name": "Meu Mundo Fica Completo (Com Voc�)", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 247771, - "Bytes": 8322240, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 723, - "Name": "1� De Julho", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 270262, - "Bytes": 9017535, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 724, - "Name": "M�sica Urbana 2", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 194899, - "Bytes": 6383472, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 24, - "CustomerId": 4, - "InvoiceDate": "2009-04-06T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 5.94, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 725, - "Name": "Vida Bandida (Ao Vivo)", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 192626, - "Bytes": 6360785, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 726, - "Name": "Palavras Ao Vento", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 212453, - "Bytes": 7048676, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 727, - "Name": "N�o Sei O Que Eu Quero Da Vida", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 151849, - "Bytes": 5024963, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 728, - "Name": "Woman Is The Nigger Of The World (Ao Vivo)", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 298919, - "Bytes": 9724145, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 24, - "CustomerId": 4, - "InvoiceDate": "2009-04-06T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 5.94, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 729, - "Name": "Juventude Transviada (Ao Vivo)", - "AlbumId": 56, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 278622, - "Bytes": 9183808, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 57, - "Title": "C�ssia Eller - Sem Limite [Disc 1]", - "ArtistId": 77, - "Tracks": [ - { - "TrackId": 730, - "Name": "Malandragem", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 247588, - "Bytes": 8165048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 731, - "Name": "O Segundo Sol", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 252133, - "Bytes": 8335629, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 732, - "Name": "Smells Like Teen Spirit (Ao Vivo)", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 316865, - "Bytes": 10384506, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 24, - "CustomerId": 4, - "InvoiceDate": "2009-04-06T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 5.94, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 733, - "Name": "E.C.T.", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 227500, - "Bytes": 7571834, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 734, - "Name": "Todo Amor Que Houver Nesta Vida", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 227160, - "Bytes": 7420347, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 735, - "Name": "Metr�. Linha 743", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 174654, - "Bytes": 5837495, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 736, - "Name": "N�s (Ao Vivo)", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 193828, - "Bytes": 6498661, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 737, - "Name": "Na Cad�ncia Do Samba", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 196075, - "Bytes": 6483952, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 738, - "Name": "Admir�vel Gado Novo", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 274390, - "Bytes": 9144031, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 739, - "Name": "Eleanor Rigby", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 189466, - "Bytes": 6303205, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 130, - "CustomerId": 49, - "InvoiceDate": "2010-07-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 8.91, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 740, - "Name": "Socorro", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 258586, - "Bytes": 8549393, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 235, - "CustomerId": 29, - "InvoiceDate": "2011-10-26T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 8.91, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 741, - "Name": "Blues Da Piedade", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 257123, - "Bytes": 8472964, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 742, - "Name": "Rubens", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 211853, - "Bytes": 7026317, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 743, - "Name": "N�o Deixe O Samba Morrer - Cassia Eller e Alcione", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 268173, - "Bytes": 8936345, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 744, - "Name": "Mis Penas Lloraba Yo (Ao Vivo) Soy Gitano (Tangos)", - "AlbumId": 57, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 188473, - "Bytes": 6195854, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 25, - "CustomerId": 10, - "InvoiceDate": "2009-04-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 8.91, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 78, - "Name": "Def Leppard", - "Albums": [ - { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits", - "ArtistId": 78, - "Tracks": [ - { - "TrackId": 826, - "Name": "Pour Some Sugar On Me", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 292519, - "Bytes": 9518842, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 827, - "Name": "Photograph", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 248633, - "Bytes": 8108507, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 828, - "Name": "Love Bites", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 346853, - "Bytes": 11305791, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 829, - "Name": "Let's Get Rocked", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 296019, - "Bytes": 9724150, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 830, - "Name": "Two Steps Behind [Acoustic Version]", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 259787, - "Bytes": 8523388, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 831, - "Name": "Animal", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 244741, - "Bytes": 7985133, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 832, - "Name": "Heaven Is", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 214021, - "Bytes": 6988128, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 833, - "Name": "Rocket", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 247248, - "Bytes": 8092463, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 834, - "Name": "When Love \u0026 Hate Collide", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 257280, - "Bytes": 8364633, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 835, - "Name": "Action", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 220604, - "Bytes": 7130830, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 836, - "Name": "Make Love Like A Man", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 255660, - "Bytes": 8309725, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 837, - "Name": "Armageddon It", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 322455, - "Bytes": 10522352, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 838, - "Name": "Have You Ever Needed Someone So Bad", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 319320, - "Bytes": 10400020, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 839, - "Name": "Rock Of Ages", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 248424, - "Bytes": 8150318, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 840, - "Name": "Hysteria", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 355056, - "Bytes": 11622738, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 841, - "Name": "Bringin' On The Heartbreak", - "AlbumId": 67, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 272457, - "Bytes": 8853324, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 79, - "Name": "Dennis Chambers", - "Albums": [ - { - "AlbumId": 68, - "Title": "Outbreak", - "ArtistId": 79, - "Tracks": [ - { - "TrackId": 842, - "Name": "Roll Call", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jim Beard", - "Milliseconds": 321358, - "Bytes": 10653494, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 843, - "Name": "Otay", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "John Scofield, Robert Aries, Milton Chambers and Gary Grainger", - "Milliseconds": 423653, - "Bytes": 14176083, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 341, - "CustomerId": 18, - "InvoiceDate": "2013-02-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 13.86, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 844, - "Name": "Groovus Interruptus", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jim Beard", - "Milliseconds": 319373, - "Bytes": 10602166, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 845, - "Name": "Paris On Mine", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jon Herington", - "Milliseconds": 368875, - "Bytes": 12059507, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 846, - "Name": "In Time", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Sylvester Stewart", - "Milliseconds": 368953, - "Bytes": 12287103, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 847, - "Name": "Plan B", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Dean Brown, Dennis Chambers \u0026 Jim Beard", - "Milliseconds": 272039, - "Bytes": 9032315, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 848, - "Name": "Outbreak", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jim Beard \u0026 Jon Herington", - "Milliseconds": 659226, - "Bytes": 21685807, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 849, - "Name": "Baltimore, DC", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "John Scofield", - "Milliseconds": 346932, - "Bytes": 11394473, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 850, - "Name": "Talkin Loud and Saying Nothin", - "AlbumId": 68, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "James Brown \u0026 Bobby Byrd", - "Milliseconds": 360411, - "Bytes": 11994859, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 80, - "Name": "Djavan", - "Albums": [ - { - "AlbumId": 69, - "Title": "Djavan Ao Vivo - Vol. 02", - "ArtistId": 80, - "Tracks": [ - { - "TrackId": 851, - "Name": "P�tala", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 270080, - "Bytes": 8856165, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 852, - "Name": "Meu Bem-Querer", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 255608, - "Bytes": 8330047, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 853, - "Name": "Cigano", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 304692, - "Bytes": 10037362, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 854, - "Name": "Boa Noite", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 338755, - "Bytes": 11283582, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 855, - "Name": "Fato Consumado", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 211565, - "Bytes": 7018586, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 856, - "Name": "Faltando Um Peda�o", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 267728, - "Bytes": 8788760, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 857, - "Name": "�libi", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 213237, - "Bytes": 6928434, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 342, - "CustomerId": 32, - "InvoiceDate": "2013-02-15T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 0.99, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 858, - "Name": "Esquinas", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 280999, - "Bytes": 9096726, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 343, - "CustomerId": 33, - "InvoiceDate": "2013-02-28T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 1.98, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 859, - "Name": "Se...", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 286432, - "Bytes": 9413777, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 343, - "CustomerId": 33, - "InvoiceDate": "2013-02-28T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 1.98, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 860, - "Name": "Eu Te Devoro", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 311614, - "Bytes": 10312775, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 861, - "Name": "Lil�s", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 274181, - "Bytes": 9049542, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 344, - "CustomerId": 35, - "InvoiceDate": "2013-02-28T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 862, - "Name": "Acelerou", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 284081, - "Bytes": 9396942, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 863, - "Name": "Um Amor Puro", - "AlbumId": 69, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 327784, - "Bytes": 10687311, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 344, - "CustomerId": 35, - "InvoiceDate": "2013-02-28T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 70, - "Title": "Djavan Ao Vivo - Vol. 1", - "ArtistId": 80, - "Tracks": [ - { - "TrackId": 864, - "Name": "Samurai", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 330997, - "Bytes": 10872787, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 865, - "Name": "Nem Um Dia", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 337423, - "Bytes": 11181446, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 345, - "CustomerId": 37, - "InvoiceDate": "2013-03-01T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 3.96, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 866, - "Name": "Oceano", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 217338, - "Bytes": 7026441, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 236, - "CustomerId": 38, - "InvoiceDate": "2011-10-31T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 13.86, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 867, - "Name": "A�ai", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 270968, - "Bytes": 8893682, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 345, - "CustomerId": 37, - "InvoiceDate": "2013-03-01T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 3.96, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 868, - "Name": "Serrado", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 295314, - "Bytes": 9842240, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 869, - "Name": "Flor De Lis", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 236355, - "Bytes": 7801108, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 345, - "CustomerId": 37, - "InvoiceDate": "2013-03-01T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 3.96, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 870, - "Name": "Amar � Tudo", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 211617, - "Bytes": 7073899, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 871, - "Name": "Azul", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 253962, - "Bytes": 8381029, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 131, - "CustomerId": 58, - "InvoiceDate": "2010-07-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 13.86, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 345, - "CustomerId": 37, - "InvoiceDate": "2013-03-01T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 3.96, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 872, - "Name": "Seduzir", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 277524, - "Bytes": 9163253, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 873, - "Name": "A Carta", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan - Gabriel, O Pensador", - "Milliseconds": 347297, - "Bytes": 11493463, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 874, - "Name": "Sina", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 268173, - "Bytes": 8906539, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 875, - "Name": "Acelerou", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 284133, - "Bytes": 9391439, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 346, - "CustomerId": 41, - "InvoiceDate": "2013-03-02T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 5.94, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 876, - "Name": "Um Amor Puro", - "AlbumId": 70, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Djavan", - "Milliseconds": 327105, - "Bytes": 10664698, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 81, - "Name": "Eric Clapton", - "Albums": [ - { - "AlbumId": 72, - "Title": "The Cream Of Clapton", - "ArtistId": 81, - "Tracks": [ - { - "TrackId": 891, - "Name": "Layla", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/Gordon", - "Milliseconds": 430733, - "Bytes": 14115792, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 346, - "CustomerId": 41, - "InvoiceDate": "2013-03-02T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 5.94, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 892, - "Name": "Badge", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/Harrison", - "Milliseconds": 163552, - "Bytes": 5322942, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 240, - "CustomerId": 57, - "InvoiceDate": "2011-11-22T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 893, - "Name": "I Feel Free", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Bruce/Clapton", - "Milliseconds": 174576, - "Bytes": 5725684, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 894, - "Name": "Sunshine Of Your Love", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Bruce/Clapton", - "Milliseconds": 252891, - "Bytes": 8225889, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 240, - "CustomerId": 57, - "InvoiceDate": "2011-11-22T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 895, - "Name": "Crossroads", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/Robert Johnson Arr: Eric Clapton", - "Milliseconds": 253335, - "Bytes": 8273540, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 346, - "CustomerId": 41, - "InvoiceDate": "2013-03-02T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 5.94, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 896, - "Name": "Strange Brew", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/Collins/Pappalardi", - "Milliseconds": 167810, - "Bytes": 5489787, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 897, - "Name": "White Room", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Bruce/Clapton", - "Milliseconds": 301583, - "Bytes": 9872606, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 898, - "Name": "Bell Bottom Blues", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton", - "Milliseconds": 304744, - "Bytes": 9946681, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 241, - "CustomerId": 2, - "InvoiceDate": "2011-11-23T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 5.94, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 899, - "Name": "Cocaine", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Cale/Clapton", - "Milliseconds": 215928, - "Bytes": 7138399, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 900, - "Name": "I Shot The Sheriff", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Marley", - "Milliseconds": 263862, - "Bytes": 8738973, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 901, - "Name": "After Midnight", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/J. J. Cale", - "Milliseconds": 191320, - "Bytes": 6460941, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 902, - "Name": "Swing Low Sweet Chariot", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/Trad. Arr. Clapton", - "Milliseconds": 208143, - "Bytes": 6896288, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 241, - "CustomerId": 2, - "InvoiceDate": "2011-11-23T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 5.94, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 903, - "Name": "Lay Down Sally", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/Levy", - "Milliseconds": 231732, - "Bytes": 7774207, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 132, - "CustomerId": 13, - "InvoiceDate": "2010-07-31T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 0.99, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 904, - "Name": "Knockin On Heavens Door", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/Dylan", - "Milliseconds": 264411, - "Bytes": 8758819, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 133, - "CustomerId": 14, - "InvoiceDate": "2010-08-13T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 1.98, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 905, - "Name": "Wonderful Tonight", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton", - "Milliseconds": 221387, - "Bytes": 7326923, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 133, - "CustomerId": 14, - "InvoiceDate": "2010-08-13T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 1.98, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 906, - "Name": "Let It Grow", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton", - "Milliseconds": 297064, - "Bytes": 9742568, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 241, - "CustomerId": 2, - "InvoiceDate": "2011-11-23T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 5.94, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 907, - "Name": "Promises", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton/F.eldman/Linn", - "Milliseconds": 180401, - "Bytes": 6006154, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 134, - "CustomerId": 16, - "InvoiceDate": "2010-08-13T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 1.98, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 908, - "Name": "I Can't Stand It", - "AlbumId": 72, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Clapton", - "Milliseconds": 249730, - "Bytes": 8271980, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 73, - "Title": "Unplugged", - "ArtistId": 81, - "Tracks": [ - { - "TrackId": 909, - "Name": "Signe", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Eric Clapton", - "Milliseconds": 193515, - "Bytes": 6475042, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 134, - "CustomerId": 16, - "InvoiceDate": "2010-08-13T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 1.98, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 910, - "Name": "Before You Accuse Me", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Eugene McDaniel", - "Milliseconds": 224339, - "Bytes": 7456807, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 241, - "CustomerId": 2, - "InvoiceDate": "2011-11-23T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 5.94, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 911, - "Name": "Hey Hey", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Big Bill Broonzy", - "Milliseconds": 196466, - "Bytes": 6543487, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 135, - "CustomerId": 18, - "InvoiceDate": "2010-08-14T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 3.96, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 912, - "Name": "Tears In Heaven", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Eric Clapton, Will Jennings", - "Milliseconds": 274729, - "Bytes": 9032835, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 26, - "CustomerId": 19, - "InvoiceDate": "2009-04-14T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 13.86, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 913, - "Name": "Lonely Stranger", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Eric Clapton", - "Milliseconds": 328724, - "Bytes": 10894406, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 135, - "CustomerId": 18, - "InvoiceDate": "2010-08-14T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 3.96, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 914, - "Name": "Nobody Knows You When You're Down \u0026 Out", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Jimmy Cox", - "Milliseconds": 231836, - "Bytes": 7669922, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 241, - "CustomerId": 2, - "InvoiceDate": "2011-11-23T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 5.94, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 915, - "Name": "Layla", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Eric Clapton, Jim Gordon", - "Milliseconds": 285387, - "Bytes": 9490542, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 135, - "CustomerId": 18, - "InvoiceDate": "2010-08-14T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 3.96, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 916, - "Name": "Running On Faith", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Jerry Lynn Williams", - "Milliseconds": 378984, - "Bytes": 12536275, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 917, - "Name": "Walkin' Blues", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Robert Johnson", - "Milliseconds": 226429, - "Bytes": 7435192, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 135, - "CustomerId": 18, - "InvoiceDate": "2010-08-14T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 3.96, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 918, - "Name": "Alberta", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Traditional", - "Milliseconds": 222406, - "Bytes": 7412975, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 241, - "CustomerId": 2, - "InvoiceDate": "2011-11-23T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 5.94, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 919, - "Name": "San Francisco Bay Blues", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Jesse Fuller", - "Milliseconds": 203363, - "Bytes": 6724021, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 920, - "Name": "Malted Milk", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Robert Johnson", - "Milliseconds": 216528, - "Bytes": 7096781, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 921, - "Name": "Old Love", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Eric Clapton, Robert Cray", - "Milliseconds": 472920, - "Bytes": 15780747, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 136, - "CustomerId": 22, - "InvoiceDate": "2010-08-15T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 5.94, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 922, - "Name": "Rollin' And Tumblin'", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "McKinley Morgenfield (Muddy Waters)", - "Milliseconds": 251768, - "Bytes": 8407355, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1105, - "Name": "A Novidade", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 324780, - "Bytes": 10765600, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1106, - "Name": "Tenho Sede", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 261616, - "Bytes": 8708114, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1107, - "Name": "Refazenda", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 218305, - "Bytes": 7237784, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 353, - "CustomerId": 20, - "InvoiceDate": "2013-04-02T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 5.94, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1108, - "Name": "Realce", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 264489, - "Bytes": 8847612, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1109, - "Name": "Esot�rico", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 317779, - "Bytes": 10530533, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1110, - "Name": "Dr�o", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 301453, - "Bytes": 9931950, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1111, - "Name": "A Paz", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 293093, - "Bytes": 9593064, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 353, - "CustomerId": 20, - "InvoiceDate": "2013-04-02T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 5.94, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1112, - "Name": "Beira Mar", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 295444, - "Bytes": 9597994, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 244, - "CustomerId": 31, - "InvoiceDate": "2011-12-09T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 0.99, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1113, - "Name": "Sampa", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 225697, - "Bytes": 7469905, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 245, - "CustomerId": 32, - "InvoiceDate": "2011-12-22T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 1.98, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1114, - "Name": "Parabolicamar�", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 284943, - "Bytes": 9543435, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 245, - "CustomerId": 32, - "InvoiceDate": "2011-12-22T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 1.98, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1115, - "Name": "Tempo Rei", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 302733, - "Bytes": 10019269, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 353, - "CustomerId": 20, - "InvoiceDate": "2013-04-02T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 5.94, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1116, - "Name": "Expresso 2222", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 284760, - "Bytes": 9690577, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 246, - "CustomerId": 34, - "InvoiceDate": "2011-12-22T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1117, - "Name": "Aquele Abra�o", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 263993, - "Bytes": 8805003, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1118, - "Name": "Palco", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 270550, - "Bytes": 9049901, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 246, - "CustomerId": 34, - "InvoiceDate": "2011-12-22T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1119, - "Name": "Toda Menina Baiana", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 278177, - "Bytes": 9351000, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 353, - "CustomerId": 20, - "InvoiceDate": "2013-04-02T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 5.94, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1120, - "Name": "S�tio Do Pica-Pau Amarelo", - "AlbumId": 73, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 218070, - "Bytes": 7217955, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 247, - "CustomerId": 36, - "InvoiceDate": "2011-12-23T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 3.96, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 82, - "Name": "Faith No More", - "Albums": [ - { - "AlbumId": 74, - "Title": "Album Of The Year", - "ArtistId": 82, - "Tracks": [ - { - "TrackId": 923, - "Name": "Collision", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Jon Hudson/Mike Patton", - "Milliseconds": 204303, - "Bytes": 6656596, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 924, - "Name": "Stripsearch", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Jon Hudson/Mike Bordin/Mike Patton", - "Milliseconds": 270106, - "Bytes": 8861119, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 925, - "Name": "Last Cup Of Sorrow", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Gould/Mike Patton", - "Milliseconds": 251663, - "Bytes": 8221247, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 136, - "CustomerId": 22, - "InvoiceDate": "2010-08-15T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 5.94, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 926, - "Name": "Naked In Front Of The Computer", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike Patton", - "Milliseconds": 128757, - "Bytes": 4225077, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 27, - "CustomerId": 33, - "InvoiceDate": "2009-04-22T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 0.99, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 927, - "Name": "Helpless", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Gould/Mike Bordin/Mike Patton", - "Milliseconds": 326217, - "Bytes": 10753135, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 28, - "CustomerId": 34, - "InvoiceDate": "2009-05-05T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 928, - "Name": "Mouth To Mouth", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton", - "Milliseconds": 228493, - "Bytes": 7505887, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 28, - "CustomerId": 34, - "InvoiceDate": "2009-05-05T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 929, - "Name": "Ashes To Ashes", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum", - "Milliseconds": 217391, - "Bytes": 7093746, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 136, - "CustomerId": 22, - "InvoiceDate": "2010-08-15T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 5.94, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 930, - "Name": "She Loves Me Not", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Gould/Mike Bordin/Mike Patton", - "Milliseconds": 209867, - "Bytes": 6887544, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 29, - "CustomerId": 36, - "InvoiceDate": "2009-05-05T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 1.98, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 931, - "Name": "Got That Feeling", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike Patton", - "Milliseconds": 140852, - "Bytes": 4643227, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 932, - "Name": "Paths Of Glory", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum", - "Milliseconds": 257253, - "Bytes": 8436300, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 29, - "CustomerId": 36, - "InvoiceDate": "2009-05-05T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 1.98, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 933, - "Name": "Home Sick Home", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike Patton", - "Milliseconds": 119040, - "Bytes": 3898976, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 136, - "CustomerId": 22, - "InvoiceDate": "2010-08-15T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 5.94, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 934, - "Name": "Pristina", - "AlbumId": 74, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Gould/Mike Patton", - "Milliseconds": 232698, - "Bytes": 7497361, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 30, - "CustomerId": 38, - "InvoiceDate": "2009-05-06T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 3.96, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 75, - "Title": "Angel Dust", - "ArtistId": 82, - "Tracks": [ - { - "TrackId": 935, - "Name": "Land Of Sunshine", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 223921, - "Bytes": 7353567, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 936, - "Name": "Caffeine", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 267937, - "Bytes": 8747367, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 30, - "CustomerId": 38, - "InvoiceDate": "2009-05-06T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 3.96, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 937, - "Name": "Midlife Crisis", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 263235, - "Bytes": 8628841, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 136, - "CustomerId": 22, - "InvoiceDate": "2010-08-15T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 5.94, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 938, - "Name": "RV", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 223242, - "Bytes": 7288162, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 30, - "CustomerId": 38, - "InvoiceDate": "2009-05-06T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 3.96, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 939, - "Name": "Smaller And Smaller", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 310831, - "Bytes": 10180103, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 940, - "Name": "Everything's Ruined", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 273658, - "Bytes": 9010917, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 30, - "CustomerId": 38, - "InvoiceDate": "2009-05-06T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 3.96, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 941, - "Name": "Malpractice", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 241371, - "Bytes": 7900683, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 136, - "CustomerId": 22, - "InvoiceDate": "2010-08-15T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 5.94, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 942, - "Name": "Kindergarten", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 270680, - "Bytes": 8853647, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 943, - "Name": "Be Aggressive", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 222432, - "Bytes": 7298027, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 944, - "Name": "A Small Victory", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 297168, - "Bytes": 9733572, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 31, - "CustomerId": 42, - "InvoiceDate": "2009-05-07T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 5.94, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 945, - "Name": "Crack Hitler", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 279144, - "Bytes": 9162435, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 946, - "Name": "Jizzlobber", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 398341, - "Bytes": 12926140, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 947, - "Name": "Midnight Cowboy", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 251924, - "Bytes": 8242626, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 948, - "Name": "Easy", - "AlbumId": 75, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": null, - "Milliseconds": 185835, - "Bytes": 6073008, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 31, - "CustomerId": 42, - "InvoiceDate": "2009-05-07T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 5.94, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime", - "ArtistId": 82, - "Tracks": [ - { - "TrackId": 949, - "Name": "Get Out", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 137482, - "Bytes": 4524972, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 347, - "CustomerId": 47, - "InvoiceDate": "2013-03-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 8.91, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 950, - "Name": "Ricochet", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 269400, - "Bytes": 8808812, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 951, - "Name": "Evidence", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Milliseconds": 293590, - "Bytes": 9626136, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 952, - "Name": "The Gentle Art Of Making Enemies", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 209319, - "Bytes": 6908609, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 31, - "CustomerId": 42, - "InvoiceDate": "2009-05-07T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 5.94, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 953, - "Name": "Star A.D.", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 203807, - "Bytes": 6747658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 954, - "Name": "Cuckoo For Caca", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Milliseconds": 222902, - "Bytes": 7388369, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 955, - "Name": "Caralho Voador", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Milliseconds": 242102, - "Bytes": 8029054, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 956, - "Name": "Ugly In The Morning", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 186435, - "Bytes": 6224997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 31, - "CustomerId": 42, - "InvoiceDate": "2009-05-07T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 5.94, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 957, - "Name": "Digging The Grave", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 185129, - "Bytes": 6109259, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 958, - "Name": "Take This Bottle", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Milliseconds": 298997, - "Bytes": 9779971, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 959, - "Name": "King For A Day", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Milliseconds": 395859, - "Bytes": 13163733, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 960, - "Name": "What A Day", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 158275, - "Bytes": 5203430, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 31, - "CustomerId": 42, - "InvoiceDate": "2009-05-07T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 5.94, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 961, - "Name": "The Last To Know", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 267833, - "Bytes": 8736776, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 962, - "Name": "Just A Man", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 336666, - "Bytes": 11031254, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 963, - "Name": "Absolute Zero", - "AlbumId": 76, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Milliseconds": 181995, - "Bytes": 5929427, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 77, - "Title": "The Real Thing", - "ArtistId": 82, - "Tracks": [ - { - "TrackId": 964, - "Name": "From Out Of Nowhere", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 202527, - "Bytes": 6587802, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 31, - "CustomerId": 42, - "InvoiceDate": "2009-05-07T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 5.94, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 965, - "Name": "Epic", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 294008, - "Bytes": 9631296, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 966, - "Name": "Falling To Pieces", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 316055, - "Bytes": 10333123, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 967, - "Name": "Surprise! You're Dead!", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 147226, - "Bytes": 4823036, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 968, - "Name": "Zombie Eaters", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 360881, - "Bytes": 11835367, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 969, - "Name": "The Real Thing", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 493635, - "Bytes": 16233080, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 970, - "Name": "Underwater Love", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 231993, - "Bytes": 7634387, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 971, - "Name": "The Morning After", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 223764, - "Bytes": 7355898, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 972, - "Name": "Woodpecker From Mars", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 340532, - "Bytes": 11174250, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 242, - "CustomerId": 8, - "InvoiceDate": "2011-11-26T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 8.91, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 973, - "Name": "War Pigs", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Milliseconds": 464770, - "Bytes": 15267802, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 974, - "Name": "Edge Of The World", - "AlbumId": 77, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Faith No More", - "Milliseconds": 250357, - "Bytes": 8235607, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 83, - "Name": "Falamansa", - "Albums": [ - { - "AlbumId": 78, - "Title": "Deixa Entrar", - "ArtistId": 83, - "Tracks": [ - { - "TrackId": 975, - "Name": "Deixa Entrar", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 33619, - "Bytes": 1095012, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 976, - "Name": "Falamansa Song", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 237165, - "Bytes": 7921313, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 977, - "Name": "Xote Dos Milagres", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 269557, - "Bytes": 8897778, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 978, - "Name": "Rindo � Toa", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 222066, - "Bytes": 7365321, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 979, - "Name": "Confid�ncia", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 222197, - "Bytes": 7460829, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 980, - "Name": "Forr� De T�quio", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 169273, - "Bytes": 5588756, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 981, - "Name": "Zeca Violeiro", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 143673, - "Bytes": 4781949, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 982, - "Name": "Avisa", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 355030, - "Bytes": 11844320, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 983, - "Name": "Principiando/Decolagem", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 116767, - "Bytes": 3923789, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 984, - "Name": "Asas", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 231915, - "Bytes": 7711669, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 985, - "Name": "Medo De Escuro", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 213760, - "Bytes": 7056323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 986, - "Name": "Ora��o", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 271072, - "Bytes": 9003882, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 987, - "Name": "Minha Gata", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 181838, - "Bytes": 6039502, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 988, - "Name": "Desaforo", - "AlbumId": 78, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 174524, - "Bytes": 5853561, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 84, - "Name": "Foo Fighters", - "Albums": [ - { - "AlbumId": 79, - "Title": "In Your Honor [Disc 1]", - "ArtistId": 84, - "Tracks": [ - { - "TrackId": 989, - "Name": "In Your Honor", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 230191, - "Bytes": 7468463, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 990, - "Name": "No Way Back", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 196675, - "Bytes": 6421400, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 991, - "Name": "Best Of You", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 255712, - "Bytes": 8363467, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 992, - "Name": "DOA", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 252186, - "Bytes": 8232342, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 993, - "Name": "Hell", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 117080, - "Bytes": 3819255, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 994, - "Name": "The Last Song", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 199523, - "Bytes": 6496742, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 995, - "Name": "Free Me", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 278700, - "Bytes": 9109340, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 137, - "CustomerId": 28, - "InvoiceDate": "2010-08-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 8.91, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 996, - "Name": "Resolve", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 288731, - "Bytes": 9416186, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 997, - "Name": "The Deepest Blues Are Black", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 238419, - "Bytes": 7735473, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 998, - "Name": "End Over End", - "AlbumId": 79, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Milliseconds": 352078, - "Bytes": 11395296, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 80, - "Title": "In Your Honor [Disc 2]", - "ArtistId": 84, - "Tracks": [ - { - "TrackId": 999, - "Name": "Still", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 313182, - "Bytes": 10323157, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1000, - "Name": "What If I Do?", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 302994, - "Bytes": 9929799, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1001, - "Name": "Miracle", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 209684, - "Bytes": 6877994, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1002, - "Name": "Another Round", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 265848, - "Bytes": 8752670, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1003, - "Name": "Friend Of A Friend", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 193280, - "Bytes": 6355088, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1004, - "Name": "Over And Out", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 316264, - "Bytes": 10428382, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1005, - "Name": "On The Mend", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 271908, - "Bytes": 9071997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1006, - "Name": "Virginia Moon", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 229198, - "Bytes": 7494639, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1007, - "Name": "Cold Day In The Sun", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 200724, - "Bytes": 6596617, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1008, - "Name": "Razor", - "AlbumId": 80, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Milliseconds": 293276, - "Bytes": 9721373, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 81, - "Title": "One By One", - "ArtistId": 84, - "Tracks": [ - { - "TrackId": 1009, - "Name": "All My Life", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 263653, - "Bytes": 8665545, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1010, - "Name": "Low", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 268120, - "Bytes": 8847196, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1011, - "Name": "Have It All", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 298057, - "Bytes": 9729292, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1012, - "Name": "Times Like These", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 266370, - "Bytes": 8624691, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1013, - "Name": "Disenchanted Lullaby", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 273528, - "Bytes": 8919111, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1014, - "Name": "Tired Of You", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 311353, - "Bytes": 10094743, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1015, - "Name": "Halo", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 306442, - "Bytes": 10026371, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1016, - "Name": "Lonely As You", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 277185, - "Bytes": 9022628, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1017, - "Name": "Overdrive", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 270550, - "Bytes": 8793187, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1018, - "Name": "Burn Away", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 298396, - "Bytes": 9678073, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 32, - "CustomerId": 48, - "InvoiceDate": "2009-05-10T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.91, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1019, - "Name": "Come Back", - "AlbumId": 81, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Foo Fighters", - "Milliseconds": 469968, - "Bytes": 15371980, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 82, - "Title": "The Colour And The Shape", - "ArtistId": 84, - "Tracks": [ - { - "TrackId": 1020, - "Name": "Doll", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 83487, - "Bytes": 2702572, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1021, - "Name": "Monkey Wrench", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 231523, - "Bytes": 7527531, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1022, - "Name": "Hey, Johnny Park!", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 248528, - "Bytes": 8079480, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1023, - "Name": "My Poor Brain", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 213446, - "Bytes": 6973746, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1024, - "Name": "Wind Up", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 152163, - "Bytes": 4950667, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1025, - "Name": "Up In Arms", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 135732, - "Bytes": 4406227, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1026, - "Name": "My Hero", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 260101, - "Bytes": 8472365, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1027, - "Name": "See You", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 146782, - "Bytes": 4888173, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1028, - "Name": "Enough Space", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl", - "Milliseconds": 157387, - "Bytes": 5169280, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1029, - "Name": "February Stars", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 289306, - "Bytes": 9344875, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1030, - "Name": "Everlong", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl", - "Milliseconds": 250749, - "Bytes": 8270816, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1031, - "Name": "Walking After You", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Grohl", - "Milliseconds": 303856, - "Bytes": 9898992, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1032, - "Name": "New Way Home", - "AlbumId": 82, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave, Taylor, Nate, Chris", - "Milliseconds": 342230, - "Bytes": 11205664, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 85, - "Name": "Frank Sinatra", - "Albums": [ - { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]", - "ArtistId": 85, - "Tracks": [ - { - "TrackId": 1033, - "Name": "My Way", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "claude fran�ois/gilles thibault/jacques revaux/paul anka", - "Milliseconds": 275879, - "Bytes": 8928684, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1034, - "Name": "Strangers In The Night", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "berthold kaempfert/charles singleton/eddie snyder", - "Milliseconds": 155794, - "Bytes": 5055295, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1035, - "Name": "New York, New York", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "fred ebb/john kander", - "Milliseconds": 206001, - "Bytes": 6707993, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1036, - "Name": "I Get A Kick Out Of You", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "cole porter", - "Milliseconds": 194429, - "Bytes": 6332441, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1037, - "Name": "Something Stupid", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "carson c. parks", - "Milliseconds": 158615, - "Bytes": 5210643, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1038, - "Name": "Moon River", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "henry mancini/johnny mercer", - "Milliseconds": 198922, - "Bytes": 6395808, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1039, - "Name": "What Now My Love", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "carl sigman/gilbert becaud/pierre leroyer", - "Milliseconds": 149995, - "Bytes": 4913383, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1040, - "Name": "Summer Love", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "hans bradtke/heinz meier/johnny mercer", - "Milliseconds": 174994, - "Bytes": 5693242, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1041, - "Name": "For Once In My Life", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "orlando murden/ronald miller", - "Milliseconds": 171154, - "Bytes": 5557537, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1042, - "Name": "Love And Marriage", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "jimmy van heusen/sammy cahn", - "Milliseconds": 89730, - "Bytes": 2930596, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1043, - "Name": "They Can't Take That Away From Me", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "george gershwin/ira gershwin", - "Milliseconds": 161227, - "Bytes": 5240043, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1044, - "Name": "My Kind Of Town", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "jimmy van heusen/sammy cahn", - "Milliseconds": 188499, - "Bytes": 6119915, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1045, - "Name": "Fly Me To The Moon", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "bart howard", - "Milliseconds": 149263, - "Bytes": 4856954, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1046, - "Name": "I've Got You Under My Skin", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "cole porter", - "Milliseconds": 210808, - "Bytes": 6883787, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1047, - "Name": "The Best Is Yet To Come", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "carolyn leigh/cy coleman", - "Milliseconds": 173583, - "Bytes": 5633730, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1048, - "Name": "It Was A Very Good Year", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "ervin drake", - "Milliseconds": 266605, - "Bytes": 8554066, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1049, - "Name": "Come Fly With Me", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "jimmy van heusen/sammy cahn", - "Milliseconds": 190458, - "Bytes": 6231029, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1050, - "Name": "That's Life", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "dean kay thompson/kelly gordon", - "Milliseconds": 187010, - "Bytes": 6095727, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1051, - "Name": "The Girl From Ipanema", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "antonio carlos jobim/norman gimbel/vinicius de moraes", - "Milliseconds": 193750, - "Bytes": 6410674, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1052, - "Name": "The Lady Is A Tramp", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "lorenz hart/richard rodgers", - "Milliseconds": 184111, - "Bytes": 5987372, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1053, - "Name": "Bad, Bad Leroy Brown", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "jim croce", - "Milliseconds": 169900, - "Bytes": 5548581, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1054, - "Name": "Mack The Knife", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "bert brecht/kurt weill/marc blitzstein", - "Milliseconds": 292075, - "Bytes": 9541052, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1055, - "Name": "Loves Been Good To Me", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "rod mckuen", - "Milliseconds": 203964, - "Bytes": 6645365, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1056, - "Name": "L.A. Is My Lady", - "AlbumId": 83, - "MediaTypeId": 1, - "GenreId": 12, - "Composer": "alan bergman/marilyn bergman/peggy lipton jones/quincy jones", - "Milliseconds": 193175, - "Bytes": 6378511, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 12, - "Name": "Easy Listening" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 86, - "Name": "Funk Como Le Gusta", - "Albums": [ - { - "AlbumId": 84, - "Title": "Roda De Funk", - "ArtistId": 86, - "Tracks": [ - { - "TrackId": 1057, - "Name": "Entrando Na Sua (Intro)", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 179252, - "Bytes": 5840027, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1058, - "Name": "Nervosa", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 229537, - "Bytes": 7680421, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1059, - "Name": "Funk De Bamba (Com Fernanda Abreu)", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 237191, - "Bytes": 7866165, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1060, - "Name": "Call Me At Cleo�s", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 236617, - "Bytes": 7920510, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1061, - "Name": "Olhos Coloridos (Com Sandra De S�)", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 321332, - "Bytes": 10567404, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1062, - "Name": "Zamba��o", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 301113, - "Bytes": 10030604, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1063, - "Name": "Funk Hum", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 244453, - "Bytes": 8084475, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1064, - "Name": "Forty Days (Com DJ Hum)", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 221727, - "Bytes": 7347172, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1065, - "Name": "Balada Da Paula", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Emerson Villani", - "Milliseconds": 322821, - "Bytes": 10603717, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1066, - "Name": "Dujji", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 324597, - "Bytes": 10833935, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 348, - "CustomerId": 56, - "InvoiceDate": "2013-03-10T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 13.86, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1067, - "Name": "Meu Guarda-Chuva", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 248528, - "Bytes": 8216625, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1068, - "Name": "Mot�is", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 213498, - "Bytes": 7041077, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1069, - "Name": "Whistle Stop", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 526132, - "Bytes": 17533664, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1070, - "Name": "16 Toneladas", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 191634, - "Bytes": 6390885, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1071, - "Name": "Divirta-Se (Saindo Da Sua)", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 74919, - "Bytes": 2439206, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 243, - "CustomerId": 17, - "InvoiceDate": "2011-12-01T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 13.86, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1072, - "Name": "Forty Days Instrumental", - "AlbumId": 84, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 292493, - "Bytes": 9584317, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 87, - "Name": "Godsmack", - "Albums": [ - { - "AlbumId": 88, - "Title": "Faceless", - "ArtistId": 87, - "Tracks": [ - { - "TrackId": 1121, - "Name": "Straight Out Of Line", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 259213, - "Bytes": 8511877, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 138, - "CustomerId": 37, - "InvoiceDate": "2010-08-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 13.86, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1122, - "Name": "Faceless", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 216006, - "Bytes": 6992417, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 247, - "CustomerId": 36, - "InvoiceDate": "2011-12-23T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 3.96, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1123, - "Name": "Changes", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna; Tony Rombola", - "Milliseconds": 260022, - "Bytes": 8455835, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 353, - "CustomerId": 20, - "InvoiceDate": "2013-04-02T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 5.94, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1124, - "Name": "Make Me Believe", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 248607, - "Bytes": 8075050, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 247, - "CustomerId": 36, - "InvoiceDate": "2011-12-23T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 3.96, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1125, - "Name": "I Stand Alone", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 246125, - "Bytes": 8017041, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1126, - "Name": "Re-Align", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 260884, - "Bytes": 8513891, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 33, - "CustomerId": 57, - "InvoiceDate": "2009-05-15T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 247, - "CustomerId": 36, - "InvoiceDate": "2011-12-23T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 3.96, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1127, - "Name": "I Fucking Hate You", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 247170, - "Bytes": 8059642, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 353, - "CustomerId": 20, - "InvoiceDate": "2013-04-02T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 5.94, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1128, - "Name": "Releasing The Demons", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 252760, - "Bytes": 8276372, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1129, - "Name": "Dead And Broken", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 251454, - "Bytes": 8206611, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1130, - "Name": "I Am", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 239516, - "Bytes": 7803270, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 248, - "CustomerId": 40, - "InvoiceDate": "2011-12-24T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 5.94, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1131, - "Name": "The Awakening", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna", - "Milliseconds": 89547, - "Bytes": 3035251, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1132, - "Name": "Serenity", - "AlbumId": 88, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sully Erna; Tony Rombola", - "Milliseconds": 274834, - "Bytes": 9172976, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 88, - "Name": "Guns N' Roses", - "Albums": [ - { - "AlbumId": 90, - "Title": "Appetite for Destruction", - "ArtistId": 88, - "Tracks": [ - { - "TrackId": 1146, - "Name": "Welcome to the Jungle", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 273552, - "Bytes": 4538451, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 248, - "CustomerId": 40, - "InvoiceDate": "2011-12-24T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 5.94, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1147, - "Name": "It's So Easy", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 202824, - "Bytes": 3394019, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 142, - "CustomerId": 56, - "InvoiceDate": "2010-09-14T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 3.96, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1148, - "Name": "Nightrain", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 268537, - "Bytes": 4457283, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1149, - "Name": "Out Ta Get Me", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 263893, - "Bytes": 4382147, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 142, - "CustomerId": 56, - "InvoiceDate": "2010-09-14T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 3.96, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1150, - "Name": "Mr. Brownstone", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 228924, - "Bytes": 3816323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 248, - "CustomerId": 40, - "InvoiceDate": "2011-12-24T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 5.94, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1151, - "Name": "Paradise City", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 406347, - "Bytes": 6687123, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1152, - "Name": "My Michelle", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 219961, - "Bytes": 3671299, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1153, - "Name": "Think About You", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 231640, - "Bytes": 3860275, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 143, - "CustomerId": 1, - "InvoiceDate": "2010-09-15T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 5.94, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1154, - "Name": "Sweet Child O' Mine", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 356424, - "Bytes": 5879347, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1155, - "Name": "You're Crazy", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 197135, - "Bytes": 3301971, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1156, - "Name": "Anything Goes", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 206400, - "Bytes": 3451891, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1157, - "Name": "Rocket Queen", - "AlbumId": 90, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 375349, - "Bytes": 6185539, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 143, - "CustomerId": 1, - "InvoiceDate": "2010-09-15T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 5.94, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 91, - "Title": "Use Your Illusion I", - "ArtistId": 88, - "Tracks": [ - { - "TrackId": 1158, - "Name": "Right Next Door to Hell", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 182321, - "Bytes": 3175950, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 34, - "CustomerId": 12, - "InvoiceDate": "2009-05-23T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 0.99, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1159, - "Name": "Dust N' Bones", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 298374, - "Bytes": 5053742, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 35, - "CustomerId": 13, - "InvoiceDate": "2009-06-05T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 1.98, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1160, - "Name": "Live and Let Die", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 184016, - "Bytes": 3203390, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 35, - "CustomerId": 13, - "InvoiceDate": "2009-06-05T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 1.98, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1161, - "Name": "Don't Cry (Original)", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 284744, - "Bytes": 4833259, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 143, - "CustomerId": 1, - "InvoiceDate": "2010-09-15T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 5.94, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1162, - "Name": "Perfect Crime", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 143637, - "Bytes": 2550030, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 36, - "CustomerId": 15, - "InvoiceDate": "2009-06-05T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 1.98, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1163, - "Name": "You Ain't the First", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 156268, - "Bytes": 2754414, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1164, - "Name": "Bad Obsession", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 328282, - "Bytes": 5537678, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 36, - "CustomerId": 15, - "InvoiceDate": "2009-06-05T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 1.98, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1165, - "Name": "Back off Bitch", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 303436, - "Bytes": 5135662, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 143, - "CustomerId": 1, - "InvoiceDate": "2010-09-15T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 5.94, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1166, - "Name": "Double Talkin' Jive", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 203637, - "Bytes": 3520862, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 37, - "CustomerId": 17, - "InvoiceDate": "2009-06-06T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 3.96, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1167, - "Name": "November Rain", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 537540, - "Bytes": 8923566, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1168, - "Name": "The Garden", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 322175, - "Bytes": 5438862, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 37, - "CustomerId": 17, - "InvoiceDate": "2009-06-06T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 3.96, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1169, - "Name": "Garden of Eden", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 161539, - "Bytes": 2839694, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 143, - "CustomerId": 1, - "InvoiceDate": "2010-09-15T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 5.94, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1170, - "Name": "Don't Damn Me", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 318901, - "Bytes": 5385886, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 37, - "CustomerId": 17, - "InvoiceDate": "2009-06-06T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 3.96, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1171, - "Name": "Bad Apples", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 268351, - "Bytes": 4567966, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1172, - "Name": "Dead Horse", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 257600, - "Bytes": 4394014, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 37, - "CustomerId": 17, - "InvoiceDate": "2009-06-06T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 3.96, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1173, - "Name": "Coma", - "AlbumId": 91, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 616511, - "Bytes": 10201342, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 143, - "CustomerId": 1, - "InvoiceDate": "2010-09-15T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 5.94, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 92, - "Title": "Use Your Illusion II", - "ArtistId": 88, - "Tracks": [ - { - "TrackId": 1174, - "Name": "Civil War", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Duff McKagan/Slash/W. Axl Rose", - "Milliseconds": 461165, - "Bytes": 15046579, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1175, - "Name": "14 Years", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Izzy Stradlin'/W. Axl Rose", - "Milliseconds": 261355, - "Bytes": 8543664, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1176, - "Name": "Yesterdays", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Billy/Del James/W. Axl Rose/West Arkeen", - "Milliseconds": 196205, - "Bytes": 6398489, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 38, - "CustomerId": 21, - "InvoiceDate": "2009-06-07T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 5.94, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1177, - "Name": "Knockin' On Heaven's Door", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bob Dylan", - "Milliseconds": 336457, - "Bytes": 10986716, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1178, - "Name": "Get In The Ring", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Duff McKagan/Slash/W. Axl Rose", - "Milliseconds": 341054, - "Bytes": 11134105, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1179, - "Name": "Shotgun Blues", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "W. Axl Rose", - "Milliseconds": 203206, - "Bytes": 6623916, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1180, - "Name": "Breakdown", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "W. Axl Rose", - "Milliseconds": 424960, - "Bytes": 13978284, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 38, - "CustomerId": 21, - "InvoiceDate": "2009-06-07T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 5.94, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1181, - "Name": "Pretty Tied Up", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Izzy Stradlin'", - "Milliseconds": 287477, - "Bytes": 9408754, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 354, - "CustomerId": 26, - "InvoiceDate": "2013-04-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 8.91, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1182, - "Name": "Locomotive", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Slash/W. Axl Rose", - "Milliseconds": 522396, - "Bytes": 17236842, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1183, - "Name": "So Fine", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Duff McKagan", - "Milliseconds": 246491, - "Bytes": 8039484, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1184, - "Name": "Estranged", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "W. Axl Rose", - "Milliseconds": 563800, - "Bytes": 18343787, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 38, - "CustomerId": 21, - "InvoiceDate": "2009-06-07T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 5.94, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1185, - "Name": "You Could Be Mine", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Izzy Stradlin'/W. Axl Rose", - "Milliseconds": 343875, - "Bytes": 11207355, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1186, - "Name": "Don't Cry", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Izzy Stradlin'/W. Axl Rose", - "Milliseconds": 284238, - "Bytes": 9222458, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1187, - "Name": "My World", - "AlbumId": 92, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "W. Axl Rose", - "Milliseconds": 84532, - "Bytes": 2764045, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 89, - "Name": "Incognito", - "Albums": [ - { - "AlbumId": 93, - "Title": "Blue Moods", - "ArtistId": 89, - "Tracks": [ - { - "TrackId": 1188, - "Name": "Colibri", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Richard Bull", - "Milliseconds": 361012, - "Bytes": 12055329, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 38, - "CustomerId": 21, - "InvoiceDate": "2009-06-07T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 5.94, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1189, - "Name": "Love Is The Colour", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "R. Carless", - "Milliseconds": 251585, - "Bytes": 8419165, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1190, - "Name": "Magnetic Ocean", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Patrick Claher/Richard Bull", - "Milliseconds": 321123, - "Bytes": 10720741, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1191, - "Name": "Deep Waters", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Richard Bull", - "Milliseconds": 396460, - "Bytes": 13075359, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1192, - "Name": "L'Arc En Ciel De Miles", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Kevin Robinson/Richard Bull", - "Milliseconds": 242390, - "Bytes": 8053997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 38, - "CustomerId": 21, - "InvoiceDate": "2009-06-07T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 5.94, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1193, - "Name": "Gypsy", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Kevin Robinson", - "Milliseconds": 330997, - "Bytes": 11083374, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1194, - "Name": "Journey Into Sunlight", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jean Paul Maunick", - "Milliseconds": 249756, - "Bytes": 8241177, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1195, - "Name": "Sunchild", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Graham Harvey", - "Milliseconds": 259970, - "Bytes": 8593143, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1196, - "Name": "Millenium", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Maxton Gig Beesley Jnr.", - "Milliseconds": 379167, - "Bytes": 12511939, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 38, - "CustomerId": 21, - "InvoiceDate": "2009-06-07T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 5.94, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1197, - "Name": "Thinking 'Bout Tomorrow", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Fayyaz Virgi/Richard Bull", - "Milliseconds": 355395, - "Bytes": 11865384, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1198, - "Name": "Jacob's Ladder", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Julian Crampton", - "Milliseconds": 367647, - "Bytes": 12201595, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1199, - "Name": "She Wears Black", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "G Harvey/R Hope-Taylor", - "Milliseconds": 528666, - "Bytes": 17617944, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1200, - "Name": "Dark Side Of The Cog", - "AlbumId": 93, - "MediaTypeId": 1, - "GenreId": 2, - "Composer": "Jean Paul Maunick", - "Milliseconds": 377155, - "Bytes": 12491122, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 90, - "Name": "Iron Maiden", - "Albums": [ - { - "AlbumId": 94, - "Title": "A Matter of Life and Death", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1201, - "Name": "Different World", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 258692, - "Bytes": 4383764, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1202, - "Name": "These Colours Don't Run", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 412152, - "Bytes": 6883500, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1203, - "Name": "Brighter Than a Thousand Suns", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 526255, - "Bytes": 8721490, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1204, - "Name": "The Pilgrim", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 307593, - "Bytes": 5172144, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 249, - "CustomerId": 46, - "InvoiceDate": "2011-12-27T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1205, - "Name": "The Longest Day", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 467810, - "Bytes": 7785748, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1206, - "Name": "Out of the Shadows", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 336896, - "Bytes": 5647303, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1207, - "Name": "The Reincarnation of Benjamin Breeg", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 442106, - "Bytes": 7367736, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1208, - "Name": "For the Greater Good of God", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 564893, - "Bytes": 9367328, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1209, - "Name": "Lord of Light", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 444614, - "Bytes": 7393698, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1210, - "Name": "The Legacy", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 562966, - "Bytes": 9314287, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1211, - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]", - "AlbumId": 94, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 431262, - "Bytes": 7205816, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 95, - "Title": "A Real Dead One", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1212, - "Name": "The Number Of The Beast", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 294635, - "Bytes": 4718897, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1213, - "Name": "The Trooper", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 235311, - "Bytes": 3766272, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1214, - "Name": "Prowler", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 255634, - "Bytes": 4091904, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1215, - "Name": "Transylvania", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 265874, - "Bytes": 4255744, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1216, - "Name": "Remember Tomorrow", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Paul Di'Anno/Steve Harris", - "Milliseconds": 352731, - "Bytes": 5648438, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1217, - "Name": "Where Eagles Dare", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 289358, - "Bytes": 4630528, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1218, - "Name": "Sanctuary", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "Milliseconds": 293250, - "Bytes": 4694016, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1219, - "Name": "Running Free", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Paul Di'Anno/Steve Harris", - "Milliseconds": 228937, - "Bytes": 3663872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1220, - "Name": "Run To The Hilss", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 237557, - "Bytes": 3803136, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1221, - "Name": "2 Minutes To Midnight", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson", - "Milliseconds": 337423, - "Bytes": 5400576, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1222, - "Name": "Iron Maiden", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 324623, - "Bytes": 5195776, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1223, - "Name": "Hallowed Be Thy Name", - "AlbumId": 95, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 471849, - "Bytes": 7550976, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 96, - "Title": "A Real Live One", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1224, - "Name": "Be Quick Or Be Dead", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/Janick Gers", - "Milliseconds": 196911, - "Bytes": 3151872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1225, - "Name": "From Here To Eternity", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 259866, - "Bytes": 4159488, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1226, - "Name": "Can I Play With Madness", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Milliseconds": 282488, - "Bytes": 4521984, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1227, - "Name": "Wasting Love", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/Janick Gers", - "Milliseconds": 347846, - "Bytes": 5566464, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 144, - "CustomerId": 7, - "InvoiceDate": "2010-09-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 8.91, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1228, - "Name": "Tailgunner", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/Steve Harris", - "Milliseconds": 249469, - "Bytes": 3993600, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1229, - "Name": "The Evil That Men Do", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Milliseconds": 325929, - "Bytes": 5216256, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1230, - "Name": "Afraid To Shoot Strangers", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 407980, - "Bytes": 6529024, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1231, - "Name": "Bring Your Daughter... To The Slaughter", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson", - "Milliseconds": 317727, - "Bytes": 5085184, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1232, - "Name": "Heaven Can Wait", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 448574, - "Bytes": 7178240, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1233, - "Name": "The Clairvoyant", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 269871, - "Bytes": 4319232, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1234, - "Name": "Fear Of The Dark", - "AlbumId": 96, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 431333, - "Bytes": 6906078, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 97, - "Title": "Brave New World", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1235, - "Name": "The Wicker Man", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Milliseconds": 275539, - "Bytes": 11022464, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1236, - "Name": "Ghost Of The Navigator", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Milliseconds": 410070, - "Bytes": 16404608, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1237, - "Name": "Brave New World", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "Milliseconds": 378984, - "Bytes": 15161472, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1238, - "Name": "Blood Brothers", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 434442, - "Bytes": 17379456, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1239, - "Name": "The Mercenary", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 282488, - "Bytes": 11300992, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1240, - "Name": "Dream Of Mirrors", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 561162, - "Bytes": 22448256, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1241, - "Name": "The Fallen Angel", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adrian Smith/Steve Harris", - "Milliseconds": 240718, - "Bytes": 9629824, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1242, - "Name": "The Nomad", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Murray/Steve Harris", - "Milliseconds": 546115, - "Bytes": 21846144, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1243, - "Name": "Out Of The Silent Planet", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Milliseconds": 385541, - "Bytes": 15423616, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1244, - "Name": "The Thin Line Between Love \u0026 Hate", - "AlbumId": 97, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Murray/Steve Harris", - "Milliseconds": 506801, - "Bytes": 20273280, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 98, - "Title": "Dance Of Death", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1245, - "Name": "Wildest Dreams", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Adrian Smith/Steve Harris", - "Milliseconds": 232777, - "Bytes": 9312384, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1246, - "Name": "Rainmaker", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "Milliseconds": 228623, - "Bytes": 9146496, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1247, - "Name": "No More Lies", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 441782, - "Bytes": 17672320, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1248, - "Name": "Montsegur", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Milliseconds": 350484, - "Bytes": 14020736, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1249, - "Name": "Dance Of Death", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 516649, - "Bytes": 20670727, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1250, - "Name": "Gates Of Tomorrow", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Milliseconds": 312032, - "Bytes": 12482688, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 39, - "CustomerId": 27, - "InvoiceDate": "2009-06-10T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 8.91, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1251, - "Name": "New Frontier", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Adrian Smith/Bruce Dickinson/Nicko McBrain", - "Milliseconds": 304509, - "Bytes": 12181632, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1252, - "Name": "Paschendale", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Adrian Smith/Steve Harris", - "Milliseconds": 508107, - "Bytes": 20326528, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1253, - "Name": "Face In The Sand", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Milliseconds": 391105, - "Bytes": 15648948, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1254, - "Name": "Age Of Innocence", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "David Murray/Steve Harris", - "Milliseconds": 370468, - "Bytes": 14823478, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1255, - "Name": "Journeyman", - "AlbumId": 98, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "Milliseconds": 427023, - "Bytes": 17082496, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 99, - "Title": "Fear Of The Dark", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1256, - "Name": "Be Quick Or Be Dead", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bruce Dickinson/Janick Gers", - "Milliseconds": 204512, - "Bytes": 8181888, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1257, - "Name": "From Here To Eternity", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 218357, - "Bytes": 8739038, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1258, - "Name": "Afraid To Shoot Strangers", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 416496, - "Bytes": 16664589, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1259, - "Name": "Fear Is The Key", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bruce Dickinson/Janick Gers", - "Milliseconds": 335307, - "Bytes": 13414528, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1260, - "Name": "Childhood's End", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 280607, - "Bytes": 11225216, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1261, - "Name": "Wasting Love", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bruce Dickinson/Janick Gers", - "Milliseconds": 350981, - "Bytes": 14041216, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1262, - "Name": "The Fugitive", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 294112, - "Bytes": 11765888, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1263, - "Name": "Chains Of Misery", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bruce Dickinson/David Murray", - "Milliseconds": 217443, - "Bytes": 8700032, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1264, - "Name": "The Apparition", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 234605, - "Bytes": 9386112, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1265, - "Name": "Judas Be My Guide", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bruce Dickinson/David Murray", - "Milliseconds": 188786, - "Bytes": 7553152, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1266, - "Name": "Weekend Warrior", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 339748, - "Bytes": 13594678, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1267, - "Name": "Fear Of The Dark", - "AlbumId": 99, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 436976, - "Bytes": 17483789, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 100, - "Title": "Iron Maiden", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1268, - "Name": "01 - Prowler", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Steve Harris", - "Milliseconds": 236173, - "Bytes": 5668992, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1269, - "Name": "02 - Sanctuary", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "Milliseconds": 196284, - "Bytes": 4712576, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1270, - "Name": "03 - Remember Tomorrow", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Harris/Paul Di�Anno", - "Milliseconds": 328620, - "Bytes": 7889024, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1271, - "Name": "04 - Running Free", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Harris/Paul Di�Anno", - "Milliseconds": 197276, - "Bytes": 4739122, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1272, - "Name": "05 - Phantom of the Opera", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Steve Harris", - "Milliseconds": 428016, - "Bytes": 10276872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1273, - "Name": "06 - Transylvania", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Steve Harris", - "Milliseconds": 259343, - "Bytes": 6226048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1274, - "Name": "07 - Strange World", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Steve Harris", - "Milliseconds": 332460, - "Bytes": 7981184, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1275, - "Name": "08 - Charlotte the Harlot", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Murray Dave", - "Milliseconds": 252708, - "Bytes": 6066304, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1276, - "Name": "09 - Iron Maiden", - "AlbumId": 100, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Steve Harris", - "Milliseconds": 216058, - "Bytes": 5189891, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 101, - "Title": "Killers", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1277, - "Name": "The Ides Of March", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 105926, - "Bytes": 2543744, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1278, - "Name": "Wrathchild", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 174471, - "Bytes": 4188288, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": null - }, - { - "TrackId": 1279, - "Name": "Murders In The Rue Morgue", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 258377, - "Bytes": 6205786, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1280, - "Name": "Another Life", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 203049, - "Bytes": 4874368, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1281, - "Name": "Genghis Khan", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 187141, - "Bytes": 4493440, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1282, - "Name": "Innocent Exile", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Di�Anno/Harris", - "Milliseconds": 232515, - "Bytes": 5584861, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1283, - "Name": "Killers", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 300956, - "Bytes": 7227440, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": null - }, - { - "TrackId": 1284, - "Name": "Prodigal Son", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 372349, - "Bytes": 8937600, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1285, - "Name": "Purgatory", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 200150, - "Bytes": 4804736, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1286, - "Name": "Drifter", - "AlbumId": 101, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 288757, - "Bytes": 6934660, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 102, - "Title": "Live After Death", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1287, - "Name": "Intro- Churchill S Speech", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": null, - "Milliseconds": 48013, - "Bytes": 1154488, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1288, - "Name": "Aces High", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": null, - "Milliseconds": 276375, - "Bytes": 6635187, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1289, - "Name": "2 Minutes To Midnight", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Smith/Dickinson", - "Milliseconds": 366550, - "Bytes": 8799380, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1290, - "Name": "The Trooper", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris", - "Milliseconds": 268878, - "Bytes": 6455255, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1291, - "Name": "Revelations", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dickinson", - "Milliseconds": 371826, - "Bytes": 8926021, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1292, - "Name": "Flight Of Icarus", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Smith/Dickinson", - "Milliseconds": 229982, - "Bytes": 5521744, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1293, - "Name": "Rime Of The Ancient Mariner", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 789472, - "Bytes": 18949518, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1294, - "Name": "Powerslave", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 454974, - "Bytes": 10921567, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1295, - "Name": "The Number Of The Beast", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris", - "Milliseconds": 275121, - "Bytes": 6605094, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1296, - "Name": "Hallowed Be Thy Name", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris", - "Milliseconds": 451422, - "Bytes": 10836304, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1297, - "Name": "Iron Maiden", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris", - "Milliseconds": 261955, - "Bytes": 6289117, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1298, - "Name": "Run To The Hills", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris", - "Milliseconds": 231627, - "Bytes": 5561241, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1299, - "Name": "Running Free", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris/Di Anno", - "Milliseconds": 204617, - "Bytes": 4912986, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1300, - "Name": "Wrathchild", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 183666, - "Bytes": 4410181, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1301, - "Name": "Acacia Avenue", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": null, - "Milliseconds": 379872, - "Bytes": 9119118, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1302, - "Name": "Children Of The Damned", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 278177, - "Bytes": 6678446, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1303, - "Name": "Die With Your Boots On", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Milliseconds": 314174, - "Bytes": 7542367, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1304, - "Name": "Phantom Of The Opera", - "AlbumId": 102, - "MediaTypeId": 1, - "GenreId": 13, - "Composer": "Steve Harris", - "Milliseconds": 441155, - "Bytes": 10589917, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 13, - "Name": "Heavy Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 103, - "Title": "Live At Donington 1992 (Disc 1)", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1305, - "Name": "Be Quick Or Be Dead", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 233142, - "Bytes": 5599853, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1306, - "Name": "The Number Of The Beast", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 294008, - "Bytes": 7060625, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1307, - "Name": "Wrathchild", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 174106, - "Bytes": 4182963, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 355, - "CustomerId": 35, - "InvoiceDate": "2013-04-10T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1308, - "Name": "From Here To Eternity", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 284447, - "Bytes": 6831163, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1309, - "Name": "Can I Play With Madness", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 213106, - "Bytes": 5118995, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1310, - "Name": "Wasting Love", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 336953, - "Bytes": 8091301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1311, - "Name": "Tailgunner", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 247640, - "Bytes": 5947795, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1312, - "Name": "The Evil That Men Do", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 478145, - "Bytes": 11479913, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1313, - "Name": "Afraid To Shoot Strangers", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 412525, - "Bytes": 9905048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1314, - "Name": "Fear Of The Dark", - "AlbumId": 103, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 431542, - "Bytes": 10361452, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 104, - "Title": "Live At Donington 1992 (Disc 2)", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1315, - "Name": "Bring Your Daughter... To The Slaughter...", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 376711, - "Bytes": 9045532, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1316, - "Name": "The Clairvoyant", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 262426, - "Bytes": 6302648, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1317, - "Name": "Heaven Can Wait", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 440555, - "Bytes": 10577743, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1318, - "Name": "Run To The Hills", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 235859, - "Bytes": 5665052, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1319, - "Name": "2 Minutes To Midnight", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adrian Smith/Bruce Dickinson", - "Milliseconds": 338233, - "Bytes": 8122030, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1320, - "Name": "Iron Maiden", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 494602, - "Bytes": 11874875, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1321, - "Name": "Hallowed Be Thy Name", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 447791, - "Bytes": 10751410, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 356, - "CustomerId": 49, - "InvoiceDate": "2013-04-18T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 0.99, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1322, - "Name": "The Trooper", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 232672, - "Bytes": 5588560, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 357, - "CustomerId": 50, - "InvoiceDate": "2013-05-01T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 1.98, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1323, - "Name": "Sanctuary", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 318511, - "Bytes": 7648679, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 357, - "CustomerId": 50, - "InvoiceDate": "2013-05-01T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 1.98, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1324, - "Name": "Running Free", - "AlbumId": 104, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 474017, - "Bytes": 11380851, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 105, - "Title": "No Prayer For The Dying", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1325, - "Name": "Tailgunner", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/Steve Harris", - "Milliseconds": 255582, - "Bytes": 4089856, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 358, - "CustomerId": 52, - "InvoiceDate": "2013-05-01T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 1.98, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1326, - "Name": "Holy Smoke", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/Steve Harris", - "Milliseconds": 229459, - "Bytes": 3672064, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1327, - "Name": "No Prayer For The Dying", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 263941, - "Bytes": 4225024, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 358, - "CustomerId": 52, - "InvoiceDate": "2013-05-01T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 1.98, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1328, - "Name": "Public Enema Number One", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/David Murray", - "Milliseconds": 254197, - "Bytes": 4071587, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1329, - "Name": "Fates Warning", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "David Murray/Steve Harris", - "Milliseconds": 250853, - "Bytes": 4018088, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 359, - "CustomerId": 54, - "InvoiceDate": "2013-05-02T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 3.96, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1330, - "Name": "The Assassin", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 258768, - "Bytes": 4141056, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 250, - "CustomerId": 55, - "InvoiceDate": "2012-01-01T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 13.86, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1331, - "Name": "Run Silent Run Deep", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/Steve Harris", - "Milliseconds": 275408, - "Bytes": 4407296, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 359, - "CustomerId": 54, - "InvoiceDate": "2013-05-02T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 3.96, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1332, - "Name": "Hooks In You", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson", - "Milliseconds": 247510, - "Bytes": 3960832, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1333, - "Name": "Bring Your Daughter... ...To The Slaughter", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson", - "Milliseconds": 284238, - "Bytes": 4548608, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 359, - "CustomerId": 54, - "InvoiceDate": "2013-05-02T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 3.96, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1334, - "Name": "Mother Russia", - "AlbumId": 105, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 332617, - "Bytes": 5322752, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 106, - "Title": "Piece Of Mind", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1335, - "Name": "Where Eagles Dare", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 369554, - "Bytes": 5914624, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 359, - "CustomerId": 54, - "InvoiceDate": "2013-05-02T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 3.96, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1336, - "Name": "Revelations", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson", - "Milliseconds": 408607, - "Bytes": 6539264, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1337, - "Name": "Flight Of The Icarus", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson", - "Milliseconds": 230269, - "Bytes": 3686400, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1338, - "Name": "Die With Your Boots On", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Milliseconds": 325694, - "Bytes": 5212160, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1339, - "Name": "The Trooper", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 251454, - "Bytes": 4024320, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 360, - "CustomerId": 58, - "InvoiceDate": "2013-05-03T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 5.94, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1340, - "Name": "Still Life", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "David Murray/Steve Harris", - "Milliseconds": 294347, - "Bytes": 4710400, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1341, - "Name": "Quest For Fire", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 221309, - "Bytes": 3543040, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1342, - "Name": "Sun And Steel", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson", - "Milliseconds": 206367, - "Bytes": 3306324, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1343, - "Name": "To Tame A Land", - "AlbumId": 106, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 445283, - "Bytes": 7129264, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 360, - "CustomerId": 58, - "InvoiceDate": "2013-05-03T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 5.94, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 107, - "Title": "Powerslave", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1344, - "Name": "Aces High", - "AlbumId": 107, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris", - "Milliseconds": 269531, - "Bytes": 6472088, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 251, - "CustomerId": 10, - "InvoiceDate": "2012-01-09T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 0.99, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1345, - "Name": "2 Minutes To Midnight", - "AlbumId": 107, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Smith/Dickinson", - "Milliseconds": 359810, - "Bytes": 8638809, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 252, - "CustomerId": 11, - "InvoiceDate": "2012-01-22T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 1.98, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1346, - "Name": "Losfer Words", - "AlbumId": 107, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 252891, - "Bytes": 6074756, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 252, - "CustomerId": 11, - "InvoiceDate": "2012-01-22T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 1.98, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1347, - "Name": "Flash of The Blade", - "AlbumId": 107, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dickinson", - "Milliseconds": 242729, - "Bytes": 5828861, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 360, - "CustomerId": 58, - "InvoiceDate": "2013-05-03T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 5.94, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1348, - "Name": "Duelists", - "AlbumId": 107, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 366471, - "Bytes": 8800686, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 253, - "CustomerId": 13, - "InvoiceDate": "2012-01-22T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 1.98, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1349, - "Name": "Back in the Village", - "AlbumId": 107, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dickinson/Smith", - "Milliseconds": 320548, - "Bytes": 7696518, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1350, - "Name": "Powerslave", - "AlbumId": 107, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dickinson", - "Milliseconds": 407823, - "Bytes": 9791106, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 253, - "CustomerId": 13, - "InvoiceDate": "2012-01-22T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 1.98, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1351, - "Name": "Rime of the Ancient Mariner", - "AlbumId": 107, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Harris", - "Milliseconds": 816509, - "Bytes": 19599577, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 360, - "CustomerId": 58, - "InvoiceDate": "2013-05-03T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 5.94, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 108, - "Title": "Rock In Rio [CD1]", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1352, - "Name": "Intro", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 115931, - "Bytes": 4638848, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 254, - "CustomerId": 15, - "InvoiceDate": "2012-01-23T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 3.96, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1353, - "Name": "The Wicker Man", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Milliseconds": 281782, - "Bytes": 11272320, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 145, - "CustomerId": 16, - "InvoiceDate": "2010-09-23T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 13.86, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1354, - "Name": "Ghost Of The Navigator", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Milliseconds": 408607, - "Bytes": 16345216, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 254, - "CustomerId": 15, - "InvoiceDate": "2012-01-23T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 3.96, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1355, - "Name": "Brave New World", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "Milliseconds": 366785, - "Bytes": 14676148, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 360, - "CustomerId": 58, - "InvoiceDate": "2013-05-03T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 5.94, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1356, - "Name": "Wrathchild", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 185808, - "Bytes": 7434368, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 254, - "CustomerId": 15, - "InvoiceDate": "2012-01-23T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 3.96, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1357, - "Name": "2 Minutes To Midnight", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson", - "Milliseconds": 386821, - "Bytes": 15474816, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1358, - "Name": "Blood Brothers", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 435513, - "Bytes": 17422464, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 254, - "CustomerId": 15, - "InvoiceDate": "2012-01-23T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 3.96, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1359, - "Name": "Sign Of The Cross", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 649116, - "Bytes": 25966720, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 360, - "CustomerId": 58, - "InvoiceDate": "2013-05-03T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 5.94, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1360, - "Name": "The Mercenary", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 282697, - "Bytes": 11309184, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1361, - "Name": "The Trooper", - "AlbumId": 108, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 273528, - "Bytes": 10942592, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 109, - "Title": "Rock In Rio [CD2]", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1362, - "Name": "Dream Of Mirrors", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 578324, - "Bytes": 23134336, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 255, - "CustomerId": 19, - "InvoiceDate": "2012-01-24T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 5.94, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1363, - "Name": "The Clansman", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 559203, - "Bytes": 22370432, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1364, - "Name": "The Evil That Men Do", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Milliseconds": 280737, - "Bytes": 11231360, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1365, - "Name": "Fear Of The Dark", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 460695, - "Bytes": 18430080, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1366, - "Name": "Iron Maiden", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 351869, - "Bytes": 14076032, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 255, - "CustomerId": 19, - "InvoiceDate": "2012-01-24T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 5.94, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1367, - "Name": "The Number Of The Beast", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 300434, - "Bytes": 12022107, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 146, - "CustomerId": 30, - "InvoiceDate": "2010-10-01T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 0.99, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1368, - "Name": "Hallowed Be Thy Name", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 443977, - "Bytes": 17760384, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 147, - "CustomerId": 31, - "InvoiceDate": "2010-10-14T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 1.98, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1369, - "Name": "Sanctuary", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "Milliseconds": 317335, - "Bytes": 12695680, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 147, - "CustomerId": 31, - "InvoiceDate": "2010-10-14T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 1.98, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1370, - "Name": "Run To The Hills", - "AlbumId": 109, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 292179, - "Bytes": 11688064, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 255, - "CustomerId": 19, - "InvoiceDate": "2012-01-24T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 5.94, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 110, - "Title": "Seventh Son of a Seventh Son", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1371, - "Name": "Moonchild", - "AlbumId": 110, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith; Bruce Dickinson", - "Milliseconds": 340767, - "Bytes": 8179151, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 148, - "CustomerId": 33, - "InvoiceDate": "2010-10-14T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 1.98, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1372, - "Name": "Infinite Dreams", - "AlbumId": 110, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 369005, - "Bytes": 8858669, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1373, - "Name": "Can I Play With Madness", - "AlbumId": 110, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "Milliseconds": 211043, - "Bytes": 5067867, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 148, - "CustomerId": 33, - "InvoiceDate": "2010-10-14T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 1.98, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1374, - "Name": "The Evil That Men Do", - "AlbumId": 110, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "Milliseconds": 273998, - "Bytes": 6578930, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 255, - "CustomerId": 19, - "InvoiceDate": "2012-01-24T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 5.94, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1375, - "Name": "Seventh Son of a Seventh Son", - "AlbumId": 110, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 593580, - "Bytes": 14249000, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 149, - "CustomerId": 35, - "InvoiceDate": "2010-10-15T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1376, - "Name": "The Prophecy", - "AlbumId": 110, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dave Murray; Steve Harris", - "Milliseconds": 305475, - "Bytes": 7334450, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 40, - "CustomerId": 36, - "InvoiceDate": "2009-06-15T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 13.86, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1377, - "Name": "The Clairvoyant", - "AlbumId": 110, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "Milliseconds": 267023, - "Bytes": 6411510, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 149, - "CustomerId": 35, - "InvoiceDate": "2010-10-15T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1378, - "Name": "Only the Good Die Young", - "AlbumId": 110, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bruce Dickinson; Harris", - "Milliseconds": 280894, - "Bytes": 6744431, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 255, - "CustomerId": 19, - "InvoiceDate": "2012-01-24T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 5.94, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 111, - "Title": "Somewhere in Time", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1379, - "Name": "Caught Somewhere in Time", - "AlbumId": 111, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 445779, - "Bytes": 10701149, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 149, - "CustomerId": 35, - "InvoiceDate": "2010-10-15T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1380, - "Name": "Wasted Years", - "AlbumId": 111, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith", - "Milliseconds": 307565, - "Bytes": 7384358, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": null - }, - { - "TrackId": 1381, - "Name": "Sea of Madness", - "AlbumId": 111, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith", - "Milliseconds": 341995, - "Bytes": 8210695, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 149, - "CustomerId": 35, - "InvoiceDate": "2010-10-15T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1382, - "Name": "Heaven Can Wait", - "AlbumId": 111, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 441417, - "Bytes": 10596431, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 255, - "CustomerId": 19, - "InvoiceDate": "2012-01-24T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 5.94, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1383, - "Name": "Stranger in a Strange Land", - "AlbumId": 111, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith", - "Milliseconds": 344502, - "Bytes": 8270899, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1384, - "Name": "Alexander the Great", - "AlbumId": 111, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 515631, - "Bytes": 12377742, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1385, - "Name": "De Ja Vu", - "AlbumId": 111, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "David Murray/Steve Harris", - "Milliseconds": 296176, - "Bytes": 7113035, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 150, - "CustomerId": 39, - "InvoiceDate": "2010-10-16T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 5.94, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1386, - "Name": "The Loneliness of the Long Dis", - "AlbumId": 111, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 391314, - "Bytes": 9393598, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 112, - "Title": "The Number of The Beast", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1387, - "Name": "22 Acacia Avenue", - "AlbumId": 112, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Steve Harris", - "Milliseconds": 395572, - "Bytes": 5542516, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1388, - "Name": "Children of the Damned", - "AlbumId": 112, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 274364, - "Bytes": 3845631, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1389, - "Name": "Gangland", - "AlbumId": 112, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Clive Burr/Steve Harris", - "Milliseconds": 228440, - "Bytes": 3202866, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 150, - "CustomerId": 39, - "InvoiceDate": "2010-10-16T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 5.94, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1390, - "Name": "Hallowed Be Thy Name", - "AlbumId": 112, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 428669, - "Bytes": 6006107, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 41, - "CustomerId": 50, - "InvoiceDate": "2009-06-23T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 0.99, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1391, - "Name": "Invaders", - "AlbumId": 112, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 203180, - "Bytes": 2849181, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 42, - "CustomerId": 51, - "InvoiceDate": "2009-07-06T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 1.98, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1392, - "Name": "Run to the Hills", - "AlbumId": 112, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Steve Harris", - "Milliseconds": 228884, - "Bytes": 3209124, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 42, - "CustomerId": 51, - "InvoiceDate": "2009-07-06T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 1.98, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1393, - "Name": "The Number Of The Beast", - "AlbumId": 112, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 293407, - "Bytes": 11737216, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 150, - "CustomerId": 39, - "InvoiceDate": "2010-10-16T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 5.94, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1394, - "Name": "The Prisoner", - "AlbumId": 112, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Adrian Smith/Steve Harris", - "Milliseconds": 361299, - "Bytes": 5062906, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 43, - "CustomerId": 53, - "InvoiceDate": "2009-07-06T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 1.98, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 113, - "Title": "The X Factor", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1395, - "Name": "Sign Of The Cross", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 678008, - "Bytes": 27121792, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1396, - "Name": "Lord Of The Flies", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 303699, - "Bytes": 12148864, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 43, - "CustomerId": 53, - "InvoiceDate": "2009-07-06T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 1.98, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1397, - "Name": "Man On The Edge", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blaze Bayley/Janick Gers", - "Milliseconds": 253413, - "Bytes": 10137728, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 150, - "CustomerId": 39, - "InvoiceDate": "2010-10-16T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 5.94, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1398, - "Name": "Fortunes Of War", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 443977, - "Bytes": 17760384, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 44, - "CustomerId": 55, - "InvoiceDate": "2009-07-07T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 3.96, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1399, - "Name": "Look For The Truth", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "Milliseconds": 310230, - "Bytes": 12411008, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1400, - "Name": "The Aftermath", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "Milliseconds": 380786, - "Bytes": 15233152, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 44, - "CustomerId": 55, - "InvoiceDate": "2009-07-07T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 3.96, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1401, - "Name": "Judgement Of Heaven", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 312476, - "Bytes": 12501120, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 150, - "CustomerId": 39, - "InvoiceDate": "2010-10-16T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 5.94, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1402, - "Name": "Blood On The World's Hands", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 357799, - "Bytes": 14313600, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 44, - "CustomerId": 55, - "InvoiceDate": "2009-07-07T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 3.96, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1403, - "Name": "The Edge Of Darkness", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "Milliseconds": 399333, - "Bytes": 15974528, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1404, - "Name": "2 A.M.", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "Milliseconds": 337658, - "Bytes": 13511087, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 44, - "CustomerId": 55, - "InvoiceDate": "2009-07-07T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 3.96, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1405, - "Name": "The Unbeliever", - "AlbumId": 113, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Janick Gers/Steve Harris", - "Milliseconds": 490422, - "Bytes": 19617920, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 150, - "CustomerId": 39, - "InvoiceDate": "2010-10-16T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 5.94, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 114, - "Title": "Virtual XI", - "ArtistId": 90, - "Tracks": [ - { - "TrackId": 1406, - "Name": "Futureal", - "AlbumId": 114, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blaze Bayley/Steve Harris", - "Milliseconds": 175777, - "Bytes": 7032960, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1407, - "Name": "The Angel And The Gambler", - "AlbumId": 114, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 592744, - "Bytes": 23711872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1408, - "Name": "Lightning Strikes Twice", - "AlbumId": 114, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Murray/Steve Harris", - "Milliseconds": 290377, - "Bytes": 11616384, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 45, - "CustomerId": 59, - "InvoiceDate": "2009-07-08T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 5.94, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1409, - "Name": "The Clansman", - "AlbumId": 114, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 539689, - "Bytes": 21592327, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1410, - "Name": "When Two Worlds Collide", - "AlbumId": 114, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blaze Bayley/David Murray/Steve Harris", - "Milliseconds": 377312, - "Bytes": 15093888, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1411, - "Name": "The Educated Fool", - "AlbumId": 114, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 404767, - "Bytes": 16191616, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1412, - "Name": "Don't Look To The Eyes Of A Stranger", - "AlbumId": 114, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 483657, - "Bytes": 19347584, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 45, - "CustomerId": 59, - "InvoiceDate": "2009-07-08T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 5.94, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1413, - "Name": "Como Estais Amigos", - "AlbumId": 114, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Blaze Bayley/Janick Gers", - "Milliseconds": 330292, - "Bytes": 13213824, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 361, - "CustomerId": 5, - "InvoiceDate": "2013-05-06T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 8.91, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 91, - "Name": "James Brown", - "Albums": [ - { - "AlbumId": 115, - "Title": "Sex Machine", - "ArtistId": 91, - "Tracks": [ - { - "TrackId": 1414, - "Name": "Please Please Please", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "James Brown/Johnny Terry", - "Milliseconds": 165067, - "Bytes": 5394585, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1415, - "Name": "Think", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Lowman Pauling", - "Milliseconds": 166739, - "Bytes": 5513208, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1416, - "Name": "Night Train", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jimmy Forrest/Lewis C. Simpkins/Oscar Washington", - "Milliseconds": 212401, - "Bytes": 7027377, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 45, - "CustomerId": 59, - "InvoiceDate": "2009-07-08T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 5.94, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1417, - "Name": "Out Of Sight", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Ted Wright", - "Milliseconds": 143725, - "Bytes": 4711323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1418, - "Name": "Papa's Got A Brand New Bag Pt.1", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "James Brown", - "Milliseconds": 127399, - "Bytes": 4174420, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1419, - "Name": "I Got You (I Feel Good)", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "James Brown", - "Milliseconds": 167392, - "Bytes": 5468472, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1420, - "Name": "It's A Man's Man's Man's World", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Betty Newsome/James Brown", - "Milliseconds": 168228, - "Bytes": 5541611, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 45, - "CustomerId": 59, - "InvoiceDate": "2009-07-08T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 5.94, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1421, - "Name": "Cold Sweat", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Alfred Ellis/James Brown", - "Milliseconds": 172408, - "Bytes": 5643213, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1422, - "Name": "Say It Loud, I'm Black And I'm Proud Pt.1", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Alfred Ellis/James Brown", - "Milliseconds": 167392, - "Bytes": 5478117, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1423, - "Name": "Get Up (I Feel Like Being A) Sex Machine", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Bobby Byrd/James Brown/Ron Lenhoff", - "Milliseconds": 316551, - "Bytes": 10498031, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1424, - "Name": "Hey America", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Addie William Jones/Nat Jones", - "Milliseconds": 218226, - "Bytes": 7187857, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 45, - "CustomerId": 59, - "InvoiceDate": "2009-07-08T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 5.94, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1425, - "Name": "Make It Funky Pt.1", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Charles Bobbitt/James Brown", - "Milliseconds": 196231, - "Bytes": 6507782, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1426, - "Name": "I'm A Greedy Man Pt.1", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Charles Bobbitt/James Brown", - "Milliseconds": 217730, - "Bytes": 7251211, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1427, - "Name": "Get On The Good Foot", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Fred Wesley/James Brown/Joseph Mims", - "Milliseconds": 215902, - "Bytes": 7182736, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1428, - "Name": "Get Up Offa That Thing", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Deanna Brown/Deidra Jenkins/Yamma Brown", - "Milliseconds": 250723, - "Bytes": 8355989, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 45, - "CustomerId": 59, - "InvoiceDate": "2009-07-08T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 5.94, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1429, - "Name": "It's Too Funky In Here", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Brad Shapiro/George Jackson/Robert Miller/Walter Shaw", - "Milliseconds": 239072, - "Bytes": 7973979, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1430, - "Name": "Living In America", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Charlie Midnight/Dan Hartman", - "Milliseconds": 282880, - "Bytes": 9432346, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1431, - "Name": "I'm Real", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Full Force/James Brown", - "Milliseconds": 334236, - "Bytes": 11183457, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1432, - "Name": "Hot Pants Pt.1", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Fred Wesley/James Brown", - "Milliseconds": 188212, - "Bytes": 6295110, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1433, - "Name": "Soul Power (Live)", - "AlbumId": 115, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "James Brown", - "Milliseconds": 260728, - "Bytes": 8593206, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 92, - "Name": "Jamiroquai", - "Albums": [ - { - "AlbumId": 116, - "Title": "Emergency On Planet Earth", - "ArtistId": 92, - "Tracks": [ - { - "TrackId": 1434, - "Name": "When You Gonna Learn (Digeridoo)", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jay Kay/Kay, Jay", - "Milliseconds": 230635, - "Bytes": 7655482, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1435, - "Name": "Too Young To Die", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Smith, Toby", - "Milliseconds": 365818, - "Bytes": 12391660, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1436, - "Name": "Hooked Up", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Smith, Toby", - "Milliseconds": 275879, - "Bytes": 9301687, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 256, - "CustomerId": 25, - "InvoiceDate": "2012-01-27T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 8.91, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1437, - "Name": "If I Like It, I Do It", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gelder, Nick van", - "Milliseconds": 293093, - "Bytes": 9848207, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1438, - "Name": "Music Of The Wind", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Smith, Toby", - "Milliseconds": 383033, - "Bytes": 12870239, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1439, - "Name": "Emergency On Planet Earth", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Smith, Toby", - "Milliseconds": 245263, - "Bytes": 8117218, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1440, - "Name": "Whatever It Is, I Just Can't Stop", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jay Kay/Kay, Jay", - "Milliseconds": 247222, - "Bytes": 8249453, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1441, - "Name": "Blow Your Mind", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Smith, Toby", - "Milliseconds": 512339, - "Bytes": 17089176, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1442, - "Name": "Revolution 1993", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Smith, Toby", - "Milliseconds": 616829, - "Bytes": 20816872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1443, - "Name": "Didgin' Out", - "AlbumId": 116, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Buchanan, Wallis", - "Milliseconds": 157100, - "Bytes": 5263555, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 117, - "Title": "Synkronized", - "ArtistId": 92, - "Tracks": [ - { - "TrackId": 1444, - "Name": "Canned Heat", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay", - "Milliseconds": 331964, - "Bytes": 11042037, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1445, - "Name": "Planet Home", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay/Toby Smith", - "Milliseconds": 284447, - "Bytes": 9566237, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1446, - "Name": "Black Capricorn Day", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay", - "Milliseconds": 341629, - "Bytes": 11477231, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1447, - "Name": "Soul Education", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay/Toby Smith", - "Milliseconds": 255477, - "Bytes": 8575435, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1448, - "Name": "Failling", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay/Toby Smith", - "Milliseconds": 225227, - "Bytes": 7503999, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1449, - "Name": "Destitute Illusions", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Derrick McKenzie/Jay Kay/Toby Smith", - "Milliseconds": 340218, - "Bytes": 11452651, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1450, - "Name": "Supersonic", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay", - "Milliseconds": 315872, - "Bytes": 10699265, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1451, - "Name": "Butterfly", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay/Toby Smith", - "Milliseconds": 268852, - "Bytes": 8947356, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1452, - "Name": "Were Do We Go From Here", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay", - "Milliseconds": 313626, - "Bytes": 10504158, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1453, - "Name": "King For A Day", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Jay Kay/Toby Smith", - "Milliseconds": 221544, - "Bytes": 7335693, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1454, - "Name": "Deeper Underground", - "AlbumId": 117, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Toby Smith", - "Milliseconds": 281808, - "Bytes": 9351277, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 118, - "Title": "The Return Of The Space Cowboy", - "ArtistId": 92, - "Tracks": [ - { - "TrackId": 1455, - "Name": "Just Another Story", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Toby Smith", - "Milliseconds": 529684, - "Bytes": 17582818, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1456, - "Name": "Stillness In Time", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Toby Smith", - "Milliseconds": 257097, - "Bytes": 8644290, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1457, - "Name": "Half The Man", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Toby Smith", - "Milliseconds": 289854, - "Bytes": 9577679, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1458, - "Name": "Light Years", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Toby Smith", - "Milliseconds": 354560, - "Bytes": 11796244, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1459, - "Name": "Manifest Destiny", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Toby Smith", - "Milliseconds": 382197, - "Bytes": 12676962, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 151, - "CustomerId": 45, - "InvoiceDate": "2010-10-19T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 8.91, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1460, - "Name": "The Kids", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Toby Smith", - "Milliseconds": 309995, - "Bytes": 10334529, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1461, - "Name": "Mr. Moon", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Stuard Zender/Toby Smith", - "Milliseconds": 329534, - "Bytes": 11043559, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1462, - "Name": "Scam", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Stuart Zender", - "Milliseconds": 422321, - "Bytes": 14019705, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1463, - "Name": "Journey To Arnhemland", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "Toby Smith/Wallis Buchanan", - "Milliseconds": 322455, - "Bytes": 10843832, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1464, - "Name": "Morning Glory", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "J. Kay/Jay Kay", - "Milliseconds": 384130, - "Bytes": 12777210, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1465, - "Name": "Space Cowboy", - "AlbumId": 118, - "MediaTypeId": 1, - "GenreId": 15, - "Composer": "J. Kay/Jay Kay", - "Milliseconds": 385697, - "Bytes": 12906520, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 93, - "Name": "JET", - "Albums": [ - { - "AlbumId": 119, - "Title": "Get Born", - "ArtistId": 93, - "Tracks": [ - { - "TrackId": 1466, - "Name": "Last Chance", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester/C. Muncey", - "Milliseconds": 112352, - "Bytes": 3683130, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1467, - "Name": "Are You Gonna Be My Girl", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Muncey/N. Cester", - "Milliseconds": 213890, - "Bytes": 6992324, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1468, - "Name": "Rollover D.J.", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester/N. Cester", - "Milliseconds": 196702, - "Bytes": 6406517, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1469, - "Name": "Look What You've Done", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "N. Cester", - "Milliseconds": 230974, - "Bytes": 7517083, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1470, - "Name": "Get What You Need", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester/C. Muncey/N. Cester", - "Milliseconds": 247719, - "Bytes": 8043765, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1471, - "Name": "Move On", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester/N. Cester", - "Milliseconds": 260623, - "Bytes": 8519353, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1472, - "Name": "Radio Song", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester/C. Muncey/N. Cester", - "Milliseconds": 272117, - "Bytes": 8871509, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1473, - "Name": "Get Me Outta Here", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester/N. Cester", - "Milliseconds": 176274, - "Bytes": 5729098, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1474, - "Name": "Cold Hard Bitch", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester/C. Muncey/N. Cester", - "Milliseconds": 243278, - "Bytes": 7929610, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1475, - "Name": "Come Around Again", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Muncey/N. Cester", - "Milliseconds": 270497, - "Bytes": 8872405, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1476, - "Name": "Take It Or Leave It", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Muncey/N. Cester", - "Milliseconds": 142889, - "Bytes": 4643370, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1477, - "Name": "Lazy Gun", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester/N. Cester", - "Milliseconds": 282174, - "Bytes": 9186285, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1478, - "Name": "Timothy", - "AlbumId": 119, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "C. Cester", - "Milliseconds": 270341, - "Bytes": 8856507, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 94, - "Name": "Jimi Hendrix", - "Albums": [ - { - "AlbumId": 120, - "Title": "Are You Experienced?", - "ArtistId": 94, - "Tracks": [ - { - "TrackId": 1479, - "Name": "Foxy Lady", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 199340, - "Bytes": 6480896, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1480, - "Name": "Manic Depression", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 222302, - "Bytes": 7289272, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1481, - "Name": "Red House", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 224130, - "Bytes": 7285851, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1482, - "Name": "Can You See Me", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 153077, - "Bytes": 4987068, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 46, - "CustomerId": 6, - "InvoiceDate": "2009-07-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 8.91, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1483, - "Name": "Love Or Confusion", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 193123, - "Bytes": 6329408, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1484, - "Name": "I Don't Live Today", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 235311, - "Bytes": 7661214, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1485, - "Name": "May This Be Love", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 191216, - "Bytes": 6240028, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1486, - "Name": "Fire", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 164989, - "Bytes": 5383075, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1487, - "Name": "Third Stone From The Sun", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 404453, - "Bytes": 13186975, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1488, - "Name": "Remember", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 168150, - "Bytes": 5509613, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1489, - "Name": "Are You Experienced?", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 254537, - "Bytes": 8292497, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1490, - "Name": "Hey Joe", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Roberts", - "Milliseconds": 210259, - "Bytes": 6870054, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1491, - "Name": "Stone Free", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 216293, - "Bytes": 7002331, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1492, - "Name": "Purple Haze", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 171572, - "Bytes": 5597056, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1493, - "Name": "51st Anniversary", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 196388, - "Bytes": 6398044, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1494, - "Name": "The Wind Cries Mary", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 200463, - "Bytes": 6540638, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1495, - "Name": "Highway Chile", - "AlbumId": 120, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimi Hendrix", - "Milliseconds": 212453, - "Bytes": 6887949, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 95, - "Name": "Joe Satriani", - "Albums": [ - { - "AlbumId": 121, - "Title": "Surfing with the Alien (Remastered)", - "ArtistId": 95, - "Tracks": [ - { - "TrackId": 1496, - "Name": "Surfing with the Alien", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 263707, - "Bytes": 4418504, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1497, - "Name": "Ice 9", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 239721, - "Bytes": 4036215, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1498, - "Name": "Crushing Day", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 314768, - "Bytes": 5232158, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1499, - "Name": "Always With Me, Always With You", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 202035, - "Bytes": 3435777, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1500, - "Name": "Satch Boogie", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 193560, - "Bytes": 3300654, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1501, - "Name": "Hill of the Skull", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "J. Satriani", - "Milliseconds": 108435, - "Bytes": 1944738, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1502, - "Name": "Circles", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 209071, - "Bytes": 3548553, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1503, - "Name": "Lords of Karma", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "J. Satriani", - "Milliseconds": 288227, - "Bytes": 4809279, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1504, - "Name": "Midnight", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "J. Satriani", - "Milliseconds": 102630, - "Bytes": 1851753, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1505, - "Name": "Echo", - "AlbumId": 121, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "J. Satriani", - "Milliseconds": 337570, - "Bytes": 5595557, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 96, - "Name": "Jota Quest", - "Albums": [ - { - "AlbumId": 123, - "Title": "Jota Quest-1995", - "ArtistId": 96, - "Tracks": [ - { - "TrackId": 1520, - "Name": "Rapidamente", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 252238, - "Bytes": 8470107, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1521, - "Name": "As Dores do Mundo", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Hyldon", - "Milliseconds": 255477, - "Bytes": 8537092, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1522, - "Name": "Vou Pra Ai", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 300878, - "Bytes": 10053718, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1523, - "Name": "My Brother", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 253231, - "Bytes": 8431821, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1524, - "Name": "H� Quanto Tempo", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 270027, - "Bytes": 9004470, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1525, - "Name": "V�cio", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 269897, - "Bytes": 8887216, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1526, - "Name": "Encontrar Algu�m", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Marco Tulio Lara/Rogerio Flausino", - "Milliseconds": 224078, - "Bytes": 7437935, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1527, - "Name": "Dance Enquanto � Tempo", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 229093, - "Bytes": 7583799, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1528, - "Name": "A Tarde", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 266919, - "Bytes": 8836127, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1529, - "Name": "Always Be All Right", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 128078, - "Bytes": 4299676, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1530, - "Name": "Sem Sentido", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 250462, - "Bytes": 8292108, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1531, - "Name": "Onibusfobia", - "AlbumId": 123, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 315977, - "Bytes": 10474904, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 97, - "Name": "Jo�o Suplicy", - "Albums": [ - { - "AlbumId": 124, - "Title": "Cafezinho", - "ArtistId": 97, - "Tracks": [ - { - "TrackId": 1532, - "Name": "Pura Elegancia", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 284107, - "Bytes": 9632269, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1533, - "Name": "Choramingando", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 190484, - "Bytes": 6400532, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1534, - "Name": "Por Merecer", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 230582, - "Bytes": 7764601, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1535, - "Name": "No Futuro", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 182308, - "Bytes": 6056200, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1536, - "Name": "Voce Inteira", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 241084, - "Bytes": 8077282, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1537, - "Name": "Cuando A Noite Vai Chegando", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 270628, - "Bytes": 9081874, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1538, - "Name": "Naquele Dia", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 251768, - "Bytes": 8452654, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1539, - "Name": "Equinocio", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 269008, - "Bytes": 8871455, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 362, - "CustomerId": 14, - "InvoiceDate": "2013-05-11T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 13.86, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1540, - "Name": "Papel�o", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 213263, - "Bytes": 7257390, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1541, - "Name": "Cuando Eu For Pro Ceu", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 118804, - "Bytes": 3948371, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1542, - "Name": "Do Nosso Amor", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 203415, - "Bytes": 6774566, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1543, - "Name": "Borogodo", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 208457, - "Bytes": 7104588, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1544, - "Name": "Cafezinho", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 180924, - "Bytes": 6031174, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1545, - "Name": "Enquanto O Dia N�o Vem", - "AlbumId": 124, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "Jo�o Suplicy", - "Milliseconds": 220891, - "Bytes": 7248336, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 98, - "Name": "Judas Priest", - "Albums": [ - { - "AlbumId": 125, - "Title": "Living After Midnight", - "ArtistId": 98, - "Tracks": [ - { - "TrackId": 1546, - "Name": "The Green Manalishi", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 205792, - "Bytes": 6720789, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1547, - "Name": "Living After Midnight", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 213289, - "Bytes": 7056785, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1548, - "Name": "Breaking The Law (Live)", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 144195, - "Bytes": 4728246, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1549, - "Name": "Hot Rockin'", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 197328, - "Bytes": 6509179, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1550, - "Name": "Heading Out To The Highway (Live)", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 276427, - "Bytes": 9006022, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1551, - "Name": "The Hellion", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 41900, - "Bytes": 1351993, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1552, - "Name": "Electric Eye", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 222197, - "Bytes": 7231368, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1553, - "Name": "You've Got Another Thing Comin'", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 305162, - "Bytes": 9962558, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 257, - "CustomerId": 34, - "InvoiceDate": "2012-02-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 13.86, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 363, - "CustomerId": 28, - "InvoiceDate": "2013-05-19T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 0.99, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1554, - "Name": "Turbo Lover", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 335542, - "Bytes": 11068866, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 47, - "CustomerId": 15, - "InvoiceDate": "2009-07-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 13.86, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 364, - "CustomerId": 29, - "InvoiceDate": "2013-06-01T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 1.98, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1555, - "Name": "Freewheel Burning", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 265952, - "Bytes": 8713599, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 364, - "CustomerId": 29, - "InvoiceDate": "2013-06-01T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 1.98, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1556, - "Name": "Some Heads Are Gonna Roll", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 249939, - "Bytes": 8198617, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1557, - "Name": "Metal Meltdown", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 290664, - "Bytes": 9390646, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 365, - "CustomerId": 31, - "InvoiceDate": "2013-06-01T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 1.98, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1558, - "Name": "Ram It Down", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 292179, - "Bytes": 9554023, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 152, - "CustomerId": 54, - "InvoiceDate": "2010-10-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 13.86, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1559, - "Name": "Diamonds And Rust (Live)", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 219350, - "Bytes": 7163147, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 365, - "CustomerId": 31, - "InvoiceDate": "2013-06-01T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 1.98, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1560, - "Name": "Victim Of Change (Live)", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 430942, - "Bytes": 14067512, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1561, - "Name": "Tyrant (Live)", - "AlbumId": 125, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": null, - "Milliseconds": 282253, - "Bytes": 9190536, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 366, - "CustomerId": 33, - "InvoiceDate": "2013-06-02T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 3.96, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 99, - "Name": "Legi�o Urbana", - "Albums": [ - { - "AlbumId": 139, - "Title": "A TempestadeTempestade Ou O Livro Dos Dias", - "ArtistId": 99, - "Tracks": [ - { - "TrackId": 1671, - "Name": "Nat�lia", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 235728, - "Bytes": 7640230, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1672, - "Name": "L'Avventura", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 278256, - "Bytes": 9165769, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1673, - "Name": "M�sica De Trabalho", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 260231, - "Bytes": 8590671, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1674, - "Name": "Longe Do Meu Lado", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo - Marcelo Bonf�", - "Milliseconds": 266161, - "Bytes": 8655249, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1675, - "Name": "A Via L�ctea", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 280084, - "Bytes": 9234879, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1676, - "Name": "M�sica Ambiente", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 247614, - "Bytes": 8234388, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1677, - "Name": "Aloha", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 325955, - "Bytes": 10793301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1678, - "Name": "Soul Parsifal", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo - Marisa Monte", - "Milliseconds": 295053, - "Bytes": 9853589, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1679, - "Name": "Dezesseis", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 323918, - "Bytes": 10573515, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1680, - "Name": "Mil Peda�os", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 203337, - "Bytes": 6643291, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1681, - "Name": "Leila", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 323056, - "Bytes": 10608239, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1682, - "Name": "1� De Julho", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 290298, - "Bytes": 9619257, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1683, - "Name": "Esperando Por Mim", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 261668, - "Bytes": 8844133, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1684, - "Name": "Quando Voc� Voltar", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 173897, - "Bytes": 5781046, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1685, - "Name": "O Livro Dos Dias", - "AlbumId": 139, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 257253, - "Bytes": 8570929, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 140, - "Title": "Mais Do Mesmo", - "ArtistId": 99, - "Tracks": [ - { - "TrackId": 1686, - "Name": "Ser�", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Marcelo Bonf�", - "Milliseconds": 148401, - "Bytes": 4826528, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1687, - "Name": "Ainda � Cedo", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Ico Ouro-Preto/Marcelo Bonf�", - "Milliseconds": 236826, - "Bytes": 7796400, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1688, - "Name": "Gera��o Coca-Cola", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 141453, - "Bytes": 4625731, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1689, - "Name": "Eduardo E M�nica", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 271229, - "Bytes": 9026691, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1690, - "Name": "Tempo Perdido", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 302158, - "Bytes": 9963914, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1691, - "Name": "Indios", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 258168, - "Bytes": 8610226, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 158, - "CustomerId": 24, - "InvoiceDate": "2010-11-19T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 8.91, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1692, - "Name": "Que Pa�s � Este", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 177606, - "Bytes": 5822124, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1693, - "Name": "Faroeste Caboclo", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 543007, - "Bytes": 18092739, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1694, - "Name": "H� Tempos", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Marcelo Bonf�", - "Milliseconds": 197146, - "Bytes": 6432922, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1695, - "Name": "Pais E Filhos", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Marcelo Bonf�", - "Milliseconds": 308401, - "Bytes": 10130685, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1696, - "Name": "Meninos E Meninas", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Marcelo Bonf�", - "Milliseconds": 203781, - "Bytes": 6667802, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1697, - "Name": "Vento No Litoral", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Marcelo Bonf�", - "Milliseconds": 366445, - "Bytes": 12063806, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1698, - "Name": "Perfei��o", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Marcelo Bonf�", - "Milliseconds": 276558, - "Bytes": 9258489, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1699, - "Name": "Giz", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Marcelo Bonf�", - "Milliseconds": 202213, - "Bytes": 6677671, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1700, - "Name": "Dezesseis", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos/Marcelo Bonf�", - "Milliseconds": 321724, - "Bytes": 10501773, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1701, - "Name": "Antes Das Seis", - "AlbumId": 140, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dado Villa-Lobos", - "Milliseconds": 189231, - "Bytes": 6296531, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 100, - "Name": "Lenny Kravitz", - "Albums": [ - { - "AlbumId": 141, - "Title": "Greatest Hits", - "ArtistId": 100, - "Tracks": [ - { - "TrackId": 1702, - "Name": "Are You Gonna Go My Way", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Craig Ross/Lenny Kravitz", - "Milliseconds": 211591, - "Bytes": 6905135, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1703, - "Name": "Fly Away", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 221962, - "Bytes": 7322085, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1704, - "Name": "Rock And Roll Is Dead", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 204199, - "Bytes": 6680312, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1705, - "Name": "Again", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 228989, - "Bytes": 7490476, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1706, - "Name": "It Ain't Over 'Til It's Over", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 242703, - "Bytes": 8078936, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1707, - "Name": "Can't Get You Off My Mind", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 273815, - "Bytes": 8937150, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1708, - "Name": "Mr. Cab Driver", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 230321, - "Bytes": 7668084, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1709, - "Name": "American Woman", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "B. Cummings/G. Peterson/M.J. Kale/R. Bachman", - "Milliseconds": 261773, - "Bytes": 8538023, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1710, - "Name": "Stand By My Woman", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Henry Kirssch/Lenny Kravitz/S. Pasch A. Krizan", - "Milliseconds": 259683, - "Bytes": 8447611, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1711, - "Name": "Always On The Run", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz/Slash", - "Milliseconds": 232515, - "Bytes": 7593397, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1712, - "Name": "Heaven Help", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gerry DeVeaux/Terry Britten", - "Milliseconds": 190354, - "Bytes": 6222092, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1713, - "Name": "I Belong To You", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 257123, - "Bytes": 8477980, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1714, - "Name": "Believe", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Henry Hirsch/Lenny Kravitz", - "Milliseconds": 295131, - "Bytes": 9661978, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 53, - "CustomerId": 44, - "InvoiceDate": "2009-08-11T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 8.91, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1715, - "Name": "Let Love Rule", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 342648, - "Bytes": 11298085, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1716, - "Name": "Black Velveteen", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lenny Kravitz", - "Milliseconds": 290899, - "Bytes": 9531301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2216, - "Name": "Johnny B. Goode", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 243200, - "Bytes": 8092024, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2217, - "Name": "Don't Look Back", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 221100, - "Bytes": 7344023, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2218, - "Name": "Jah Seh No", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 276871, - "Bytes": 9134476, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2219, - "Name": "I'm The Toughest", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 230191, - "Bytes": 7657594, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2220, - "Name": "Nothing But Love", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 221570, - "Bytes": 7335228, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2221, - "Name": "Buk-In-Hamm Palace", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 265665, - "Bytes": 8964369, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2222, - "Name": "Bush Doctor", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 239751, - "Bytes": 7942299, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2223, - "Name": "Wanted Dread And Alive", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 260310, - "Bytes": 8670933, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2224, - "Name": "Mystic Man", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 353671, - "Bytes": 11812170, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2225, - "Name": "Coming In Hot", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 213054, - "Bytes": 7109414, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2226, - "Name": "Pick Myself Up", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 234684, - "Bytes": 7788255, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2227, - "Name": "Crystal Ball", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 309733, - "Bytes": 10319296, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2228, - "Name": "Equal Rights Downpresser Man", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 366733, - "Bytes": 12086524, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2434, - "Name": "Holding Back The Years", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall and Neil Moss", - "Milliseconds": 270053, - "Bytes": 8833220, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2435, - "Name": "Money's Too Tight To Mention", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John and William Valentine", - "Milliseconds": 268408, - "Bytes": 8861921, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2436, - "Name": "The Right Thing", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall", - "Milliseconds": 262687, - "Bytes": 8624063, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2437, - "Name": "It's Only Love", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy and Vella Cameron", - "Milliseconds": 232594, - "Bytes": 7659017, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2438, - "Name": "A New Flame", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall", - "Milliseconds": 237662, - "Bytes": 7822875, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2439, - "Name": "You've Got It", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall and Lamont Dozier", - "Milliseconds": 235232, - "Bytes": 7712845, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2440, - "Name": "If You Don't Know Me By Now", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kenny Gamble and Leon Huff", - "Milliseconds": 206524, - "Bytes": 6712634, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2441, - "Name": "Stars", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall", - "Milliseconds": 248137, - "Bytes": 8194906, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2442, - "Name": "Something Got Me Started", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall and Fritz McIntyre", - "Milliseconds": 239595, - "Bytes": 7997139, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2443, - "Name": "Thrill Me", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall and Fritz McIntyre", - "Milliseconds": 303934, - "Bytes": 10034711, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2444, - "Name": "Your Mirror", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall", - "Milliseconds": 240666, - "Bytes": 7893821, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2445, - "Name": "For Your Babies", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall", - "Milliseconds": 256992, - "Bytes": 8408803, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2446, - "Name": "So Beautiful", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall", - "Milliseconds": 298083, - "Bytes": 9837832, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2447, - "Name": "Angel", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Carolyn Franklin and Sonny Saunders", - "Milliseconds": 240561, - "Bytes": 7880256, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2448, - "Name": "Fairground", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mick Hucknall", - "Milliseconds": 263888, - "Bytes": 8793094, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3132, - "Name": "Still Of The Night", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sykes", - "Milliseconds": 398210, - "Bytes": 13043817, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3133, - "Name": "Here I Go Again", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Marsden", - "Milliseconds": 233874, - "Bytes": 7652473, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3134, - "Name": "Is This Love", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sykes", - "Milliseconds": 283924, - "Bytes": 9262360, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3135, - "Name": "Love Ain't No Stranger", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Galley", - "Milliseconds": 259395, - "Bytes": 8490428, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3136, - "Name": "Looking For Love", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sykes", - "Milliseconds": 391941, - "Bytes": 12769847, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3137, - "Name": "Now You're Gone", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Vandenberg", - "Milliseconds": 251141, - "Bytes": 8162193, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3138, - "Name": "Slide It In", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Coverdale", - "Milliseconds": 202475, - "Bytes": 6615152, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3139, - "Name": "Slow An' Easy", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Moody", - "Milliseconds": 367255, - "Bytes": 11961332, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3140, - "Name": "Judgement Day", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Vandenberg", - "Milliseconds": 317074, - "Bytes": 10326997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3141, - "Name": "You're Gonna Break My Hart Again", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Sykes", - "Milliseconds": 250853, - "Bytes": 8176847, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3142, - "Name": "The Deeper The Love", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Vandenberg", - "Milliseconds": 262791, - "Bytes": 8606504, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3143, - "Name": "Crying In The Rain", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Coverdale", - "Milliseconds": 337005, - "Bytes": 10931921, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3144, - "Name": "Fool For Your Loving", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Marsden/Moody", - "Milliseconds": 250801, - "Bytes": 8129820, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3145, - "Name": "Sweet Lady Luck", - "AlbumId": 141, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Vandenberg", - "Milliseconds": 273737, - "Bytes": 8919163, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 101, - "Name": "Lulu Santos", - "Albums": [ - { - "AlbumId": 142, - "Title": "Lulu Santos - RCA 100 Anos De M�sica - �lbum 01", - "ArtistId": 101, - "Tracks": [ - { - "TrackId": 1717, - "Name": "Assim Caminha A Humanidade", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 210755, - "Bytes": 6993763, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1720, - "Name": "Um Pro Outro", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 236382, - "Bytes": 7825215, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1722, - "Name": "Casa", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 307591, - "Bytes": 10107269, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1723, - "Name": "Condi��o", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 263549, - "Bytes": 8778465, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1726, - "Name": "Satisfa��o", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 208065, - "Bytes": 6901681, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1727, - "Name": "Brum�rio", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 216241, - "Bytes": 7243499, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1730, - "Name": "S�bado � Noite", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 193854, - "Bytes": 6435114, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1731, - "Name": "A Cura", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 280920, - "Bytes": 9260588, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1733, - "Name": "Atr�s Do Trio El�trico", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 149080, - "Bytes": 4917615, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1736, - "Name": "Tudo Bem", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 196101, - "Bytes": 6419139, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1737, - "Name": "Toda Forma De Amor", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 227813, - "Bytes": 7496584, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1740, - "Name": "Sereia", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 278047, - "Bytes": 9121087, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1742, - "Name": "Se Voc� Pensa", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 195996, - "Bytes": 6552490, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1743, - "Name": "L� Vem O Sol (Here Comes The Sun)", - "AlbumId": 142, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 189492, - "Bytes": 6229645, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 143, - "Title": "Lulu Santos - RCA 100 Anos De M�sica - �lbum 02", - "ArtistId": 101, - "Tracks": [ - { - "TrackId": 1718, - "Name": "Honolulu", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 261433, - "Bytes": 8558481, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1719, - "Name": "Dancin�Days", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 237400, - "Bytes": 7875347, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1721, - "Name": "Aviso Aos Navegantes", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 242808, - "Bytes": 8058651, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1724, - "Name": "Hyperconectividade", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 180636, - "Bytes": 5948039, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1725, - "Name": "O Descobridor Dos Sete Mares", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 225854, - "Bytes": 7475780, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1728, - "Name": "Um Certo Algu�m", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 194063, - "Bytes": 6430939, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1729, - "Name": "Fullg�s", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 346070, - "Bytes": 11505484, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1732, - "Name": "Aquilo", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 246073, - "Bytes": 8167819, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1734, - "Name": "Senta A Pua", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 217547, - "Bytes": 7205844, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1735, - "Name": "Ro-Que-Se-Da-Ne", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 146703, - "Bytes": 4805897, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1738, - "Name": "Tudo Igual", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 276035, - "Bytes": 9201645, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1739, - "Name": "Fogo De Palha", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 246804, - "Bytes": 8133732, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1741, - "Name": "Assaltaram A Gram�tica", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 261041, - "Bytes": 8698959, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1744, - "Name": "O �ltimo Rom�ntico (Ao Vivo)", - "AlbumId": 143, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 231993, - "Bytes": 7692697, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 102, - "Name": "Marillion", - "Albums": [ - { - "AlbumId": 144, - "Title": "Misplaced Childhood", - "ArtistId": 102, - "Tracks": [ - { - "TrackId": 1745, - "Name": "Pseudo Silk Kimono", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 134739, - "Bytes": 4334038, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1746, - "Name": "Kayleigh", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 234605, - "Bytes": 7716005, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1747, - "Name": "Lavender", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 153417, - "Bytes": 4999814, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1748, - "Name": "Bitter Suite: Brief Encounter / Lost Weekend / Blue Angel", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 356493, - "Bytes": 11791068, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1749, - "Name": "Heart Of Lothian: Wide Boy / Curtain Call", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 366053, - "Bytes": 11893723, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1750, - "Name": "Waterhole (Expresso Bongo)", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 133093, - "Bytes": 4378835, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1751, - "Name": "Lords Of The Backstage", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 112875, - "Bytes": 3741319, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1752, - "Name": "Blind Curve: Vocal Under A Bloodlight / Passing Strangers / Mylo / Perimeter Walk / Threshold", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 569704, - "Bytes": 18578995, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1753, - "Name": "Childhoods End?", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 272796, - "Bytes": 9015366, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1754, - "Name": "White Feather", - "AlbumId": 144, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Milliseconds": 143595, - "Bytes": 4711776, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 103, - "Name": "Marisa Monte", - "Albums": [ - { - "AlbumId": 145, - "Title": "Barulhinho Bom", - "ArtistId": 103, - "Tracks": [ - { - "TrackId": 1755, - "Name": "Arrepio", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Carlinhos Brown", - "Milliseconds": 136254, - "Bytes": 4511390, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1756, - "Name": "Magamalabares", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Carlinhos Brown", - "Milliseconds": 215875, - "Bytes": 7183757, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1757, - "Name": "Chuva No Brejo", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Morais", - "Milliseconds": 145606, - "Bytes": 4857761, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1758, - "Name": "C�rebro Eletr�nico", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilberto Gil", - "Milliseconds": 172800, - "Bytes": 5760864, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1759, - "Name": "Tempos Modernos", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Lulu Santos", - "Milliseconds": 183066, - "Bytes": 6066234, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1760, - "Name": "Mara��", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Carlinhos Brown", - "Milliseconds": 230008, - "Bytes": 7621482, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1761, - "Name": "Blanco", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Marisa Monte/poema de Octavio Paz/vers�o: Haroldo de Campos", - "Milliseconds": 45191, - "Bytes": 1454532, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1762, - "Name": "Panis Et Circenses", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 192339, - "Bytes": 6318373, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1763, - "Name": "De Noite Na Cama", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 209005, - "Bytes": 7012658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1764, - "Name": "Beija Eu", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 197276, - "Bytes": 6512544, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1765, - "Name": "Give Me Love", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 249808, - "Bytes": 8196331, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1766, - "Name": "Ainda Lembro", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 218801, - "Bytes": 7211247, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1767, - "Name": "A Menina Dan�a", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 129410, - "Bytes": 4326918, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1768, - "Name": "Dan�a Da Solid�o", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 203520, - "Bytes": 6699368, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1769, - "Name": "Ao Meu Redor", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 275591, - "Bytes": 9158834, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1770, - "Name": "Bem Leve", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 159190, - "Bytes": 5246835, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1771, - "Name": "Segue O Seco", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 178207, - "Bytes": 5922018, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 369, - "CustomerId": 52, - "InvoiceDate": "2013-06-11T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 13.86, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1772, - "Name": "O Xote Das Meninas", - "AlbumId": 145, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Caetano Veloso e Gilberto Gil", - "Milliseconds": 291866, - "Bytes": 9553228, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 104, - "Name": "Marvin Gaye", - "Albums": [ - { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)", - "ArtistId": 104, - "Tracks": [ - { - "TrackId": 1773, - "Name": "Wherever I Lay My Hat", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": null, - "Milliseconds": 136986, - "Bytes": 4477321, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1774, - "Name": "Get My Hands On Some Lovin'", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": null, - "Milliseconds": 149054, - "Bytes": 4860380, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1775, - "Name": "No Good Without You", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "William \"Mickey\" Stevenson", - "Milliseconds": 161410, - "Bytes": 5259218, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1776, - "Name": "You've Been A Long Time Coming", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Brian Holland/Eddie Holland/Lamont Dozier", - "Milliseconds": 137221, - "Bytes": 4437949, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1777, - "Name": "When I Had Your Love", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Robert Rogers/Warren \"Pete\" Moore/William \"Mickey\" Stevenson", - "Milliseconds": 152424, - "Bytes": 4972815, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1778, - "Name": "You're What's Happening (In The World Today)", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Allen Story/George Gordy/Robert Gordy", - "Milliseconds": 142027, - "Bytes": 4631104, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1779, - "Name": "Loving You Is Sweeter Than Ever", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Ivy Hunter/Stevie Wonder", - "Milliseconds": 166295, - "Bytes": 5377546, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1780, - "Name": "It's A Bitter Pill To Swallow", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Smokey Robinson/Warren \"Pete\" Moore", - "Milliseconds": 194821, - "Bytes": 6477882, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1781, - "Name": "Seek And You Shall Find", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Ivy Hunter/William \"Mickey\" Stevenson", - "Milliseconds": 223451, - "Bytes": 7306719, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1782, - "Name": "Gonna Keep On Tryin' Till I Win Your Love", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Barrett Strong/Norman Whitfield", - "Milliseconds": 176404, - "Bytes": 5789945, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1783, - "Name": "Gonna Give Her All The Love I've Got", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Barrett Strong/Norman Whitfield", - "Milliseconds": 210886, - "Bytes": 6893603, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1784, - "Name": "I Wish It Would Rain", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Barrett Strong/Norman Whitfield/Roger Penzabene", - "Milliseconds": 172486, - "Bytes": 5647327, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1785, - "Name": "Abraham, Martin And John", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Dick Holler", - "Milliseconds": 273057, - "Bytes": 8888206, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 370, - "CustomerId": 7, - "InvoiceDate": "2013-06-19T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 0.99, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1786, - "Name": "Save The Children", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Al Cleveland/Marvin Gaye/Renaldo Benson", - "Milliseconds": 194821, - "Bytes": 6342021, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 371, - "CustomerId": 8, - "InvoiceDate": "2013-07-02T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 1.98, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1787, - "Name": "You Sure Love To Ball", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Marvin Gaye", - "Milliseconds": 218540, - "Bytes": 7217872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 371, - "CustomerId": 8, - "InvoiceDate": "2013-07-02T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 1.98, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1788, - "Name": "Ego Tripping Out", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Marvin Gaye", - "Milliseconds": 314514, - "Bytes": 10383887, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1789, - "Name": "Praise", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Marvin Gaye", - "Milliseconds": 235833, - "Bytes": 7839179, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 372, - "CustomerId": 10, - "InvoiceDate": "2013-07-02T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 1.98, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1790, - "Name": "Heavy Love Affair", - "AlbumId": 146, - "MediaTypeId": 1, - "GenreId": 14, - "Composer": "Marvin Gaye", - "Milliseconds": 227892, - "Bytes": 7522232, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 105, - "Name": "Men At Work", - "Albums": [ - { - "AlbumId": 147, - "Title": "The Best Of Men At Work", - "ArtistId": 105, - "Tracks": [ - { - "TrackId": 1791, - "Name": "Down Under", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 222171, - "Bytes": 7366142, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 372, - "CustomerId": 10, - "InvoiceDate": "2013-07-02T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 1.98, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1792, - "Name": "Overkill", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 225410, - "Bytes": 7408652, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1793, - "Name": "Be Good Johnny", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 216320, - "Bytes": 7139814, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 373, - "CustomerId": 12, - "InvoiceDate": "2013-07-03T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 3.96, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1794, - "Name": "Everything I Need", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 216476, - "Bytes": 7107625, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 264, - "CustomerId": 13, - "InvoiceDate": "2012-03-03T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 13.86, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1795, - "Name": "Down by the Sea", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 408163, - "Bytes": 13314900, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 54, - "CustomerId": 53, - "InvoiceDate": "2009-08-16T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 13.86, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 373, - "CustomerId": 12, - "InvoiceDate": "2013-07-03T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 3.96, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1796, - "Name": "Who Can It Be Now?", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 202396, - "Bytes": 6682850, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1797, - "Name": "It's a Mistake", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 273371, - "Bytes": 8979965, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 373, - "CustomerId": 12, - "InvoiceDate": "2013-07-03T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 3.96, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1798, - "Name": "Dr. Heckyll \u0026 Mr. Jive", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 278465, - "Bytes": 9110403, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1799, - "Name": "Shakes and Ladders", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 198008, - "Bytes": 6560753, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 159, - "CustomerId": 33, - "InvoiceDate": "2010-11-24T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 13.86, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 373, - "CustomerId": 12, - "InvoiceDate": "2013-07-03T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 3.96, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1800, - "Name": "No Sign of Yesterday", - "AlbumId": 147, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 362004, - "Bytes": 11829011, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 106, - "Name": "Mot�rhead", - "Albums": [ - { - "AlbumId": 160, - "Title": "Ace Of Spades", - "ArtistId": 106, - "Tracks": [ - { - "TrackId": 1942, - "Name": "Ace Of Spades", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 169926, - "Bytes": 5523552, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": null - }, - { - "TrackId": 1943, - "Name": "Love Me Like A Reptile", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 203546, - "Bytes": 6616389, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1944, - "Name": "Shoot You In The Back", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 160026, - "Bytes": 5175327, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1945, - "Name": "Live To Win", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 217626, - "Bytes": 7102182, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1946, - "Name": "Fast And Loose", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 203337, - "Bytes": 6643350, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 60, - "CustomerId": 23, - "InvoiceDate": "2009-09-11T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 8.91, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1947, - "Name": "(We Are) The Road Crew", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 192600, - "Bytes": 6283035, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1948, - "Name": "Fire Fire", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 164675, - "Bytes": 5416114, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1949, - "Name": "Jailbait", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 213916, - "Bytes": 6983609, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1950, - "Name": "Dance", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 158432, - "Bytes": 5155099, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1951, - "Name": "Bite The Bullet", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 98115, - "Bytes": 3195536, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1952, - "Name": "The Chase Is Better Than The Catch", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 258403, - "Bytes": 8393310, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1953, - "Name": "The Hammer", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 168071, - "Bytes": 5543267, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1954, - "Name": "Dirty Love", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Clarke/Kilmister/Taylor", - "Milliseconds": 176457, - "Bytes": 5805241, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1955, - "Name": "Please Don't Touch", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Heath/Robinson", - "Milliseconds": 169926, - "Bytes": 5557002, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1956, - "Name": "Emergency", - "AlbumId": 160, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dufort/Johnson/McAuliffe/Williams", - "Milliseconds": 180427, - "Bytes": 5828728, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 107, - "Name": "Mot�rhead \u0026 Girlschool", - "Albums": null - }, - { - "ArtistId": 108, - "Name": "M�nica Marianno", - "Albums": [ - { - "AlbumId": 161, - "Title": "Demorou...", - "ArtistId": 108, - "Tracks": [ - { - "TrackId": 1957, - "Name": "Kir Royal", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 234788, - "Bytes": 7706552, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1958, - "Name": "O Que Vai Em Meu Cora��o", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 255373, - "Bytes": 8366846, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1959, - "Name": "Aos Le�es", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 234684, - "Bytes": 7790574, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1960, - "Name": "Dois �ndios", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 219271, - "Bytes": 7213072, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1961, - "Name": "Noite Negra", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 206811, - "Bytes": 6819584, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1962, - "Name": "Beijo do Olhar", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 252682, - "Bytes": 8369029, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1963, - "Name": "� Fogo", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 194873, - "Bytes": 6501520, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1964, - "Name": "J� Foi", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 245681, - "Bytes": 8094872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1965, - "Name": "S� Se For Pelo Cabelo", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 238288, - "Bytes": 8006345, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1966, - "Name": "No Clima", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 249495, - "Bytes": 8362040, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1967, - "Name": "A Mo�a e a Chuva", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 274625, - "Bytes": 8929357, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1968, - "Name": "Demorou!", - "AlbumId": 161, - "MediaTypeId": 1, - "GenreId": 16, - "Composer": "M�nica Marianno", - "Milliseconds": 39131, - "Bytes": 1287083, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 109, - "Name": "M�tley Cr�e", - "Albums": [ - { - "AlbumId": 162, - "Title": "Motley Crue Greatest Hits", - "ArtistId": 109, - "Tracks": [ - { - "TrackId": 1969, - "Name": "Bitter Pill", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil", - "Milliseconds": 266814, - "Bytes": 8666786, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1970, - "Name": "Enslaved", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Mick Mars/Nikki Sixx/Tommy Lee", - "Milliseconds": 269844, - "Bytes": 8789966, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1971, - "Name": "Girls, Girls, Girls", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Mick Mars/Nikki Sixx/Tommy Lee", - "Milliseconds": 270288, - "Bytes": 8874814, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1972, - "Name": "Kickstart My Heart", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Nikki Sixx", - "Milliseconds": 283559, - "Bytes": 9237736, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1973, - "Name": "Wild Side", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Nikki Sixx/Tommy Lee/Vince Neil", - "Milliseconds": 276767, - "Bytes": 9116997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1974, - "Name": "Glitter", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Bryan Adams/Nikki Sixx/Scott Humphrey", - "Milliseconds": 340114, - "Bytes": 11184094, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1975, - "Name": "Dr. Feelgood", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Mick Mars/Nikki Sixx", - "Milliseconds": 282618, - "Bytes": 9281875, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1976, - "Name": "Same Ol' Situation", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil", - "Milliseconds": 254511, - "Bytes": 8283958, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1977, - "Name": "Home Sweet Home", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Nikki Sixx/Tommy Lee/Vince Neil", - "Milliseconds": 236904, - "Bytes": 7697538, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1978, - "Name": "Afraid", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Nikki Sixx", - "Milliseconds": 248006, - "Bytes": 8077464, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1979, - "Name": "Don't Go Away Mad (Just Go Away)", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Mick Mars/Nikki Sixx", - "Milliseconds": 279980, - "Bytes": 9188156, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1980, - "Name": "Without You", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Mick Mars/Nikki Sixx", - "Milliseconds": 268956, - "Bytes": 8738371, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1981, - "Name": "Smokin' in The Boys Room", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Cub Coda/Michael Lutz", - "Milliseconds": 206837, - "Bytes": 6735408, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1982, - "Name": "Primal Scream", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil", - "Milliseconds": 286197, - "Bytes": 9421164, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1983, - "Name": "Too Fast For Love", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Nikki Sixx", - "Milliseconds": 200829, - "Bytes": 6580542, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1984, - "Name": "Looks That Kill", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Nikki Sixx", - "Milliseconds": 240979, - "Bytes": 7831122, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": null - }, - { - "TrackId": 1985, - "Name": "Shout At The Devil", - "AlbumId": 162, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Nikki Sixx", - "Milliseconds": 221962, - "Bytes": 7281974, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 110, - "Name": "Nirvana", - "Albums": [ - { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]", - "ArtistId": 110, - "Tracks": [ - { - "TrackId": 1986, - "Name": "Intro", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 52218, - "Bytes": 1688527, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1987, - "Name": "School", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 160235, - "Bytes": 5234885, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1988, - "Name": "Drain You", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 215196, - "Bytes": 7013175, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1989, - "Name": "Aneurysm", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Nirvana", - "Milliseconds": 271516, - "Bytes": 8862545, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1990, - "Name": "Smells Like Teen Spirit", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Nirvana", - "Milliseconds": 287190, - "Bytes": 9425215, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1991, - "Name": "Been A Son", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 127555, - "Bytes": 4170369, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1992, - "Name": "Lithium", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 250017, - "Bytes": 8148800, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1993, - "Name": "Sliver", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 116218, - "Bytes": 3784567, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1994, - "Name": "Spank Thru", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 190354, - "Bytes": 6186487, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1995, - "Name": "Scentless Apprentice", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Nirvana", - "Milliseconds": 211200, - "Bytes": 6898177, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 1996, - "Name": "Heart-Shaped Box", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 281887, - "Bytes": 9210982, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1997, - "Name": "Milk It", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 225724, - "Bytes": 7406945, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1998, - "Name": "Negative Creep", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 163761, - "Bytes": 5354854, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 1999, - "Name": "Polly", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 149995, - "Bytes": 4885331, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2000, - "Name": "Breed", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 208378, - "Bytes": 6759080, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2001, - "Name": "Tourette's", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 115591, - "Bytes": 3753246, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2002, - "Name": "Blew", - "AlbumId": 163, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 216346, - "Bytes": 7096936, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 164, - "Title": "Nevermind", - "ArtistId": 110, - "Tracks": [ - { - "TrackId": 2003, - "Name": "Smells Like Teen Spirit", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 301296, - "Bytes": 9823847, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": [ - { - "InvoiceId": 376, - "CustomerId": 31, - "InvoiceDate": "2013-07-12T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 13.86, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2004, - "Name": "In Bloom", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 254928, - "Bytes": 8327077, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2005, - "Name": "Come As You Are", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 219219, - "Bytes": 7123357, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": null - }, - { - "TrackId": 2006, - "Name": "Breed", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 183928, - "Bytes": 5984812, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2007, - "Name": "Lithium", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 256992, - "Bytes": 8404745, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": null - }, - { - "TrackId": 2008, - "Name": "Polly", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 177031, - "Bytes": 5788407, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2009, - "Name": "Territorial Pissings", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 143281, - "Bytes": 4613880, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2010, - "Name": "Drain You", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 223973, - "Bytes": 7273440, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": null - }, - { - "TrackId": 2011, - "Name": "Lounge Act", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 156786, - "Bytes": 5093635, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2012, - "Name": "Stay Away", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 212636, - "Bytes": 6956404, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2013, - "Name": "On A Plain", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 196440, - "Bytes": 6390635, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2014, - "Name": "Something In The Way", - "AlbumId": 164, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kurt Cobain", - "Milliseconds": 230556, - "Bytes": 7472168, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 111, - "Name": "O Ter�o", - "Albums": [ - { - "AlbumId": 165, - "Title": "Compositores", - "ArtistId": 111, - "Tracks": [ - { - "TrackId": 2015, - "Name": "Time", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 96888, - "Bytes": 3124455, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2016, - "Name": "P.S.Apare�a", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 209188, - "Bytes": 6842244, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2017, - "Name": "Sangue Latino", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 223033, - "Bytes": 7354184, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 377, - "CustomerId": 45, - "InvoiceDate": "2013-07-20T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 0.99, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2018, - "Name": "Folhas Secas", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 161253, - "Bytes": 5284522, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 378, - "CustomerId": 46, - "InvoiceDate": "2013-08-02T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2019, - "Name": "Poeira", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 267075, - "Bytes": 8784141, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 378, - "CustomerId": 46, - "InvoiceDate": "2013-08-02T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2020, - "Name": "M�gica", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 233743, - "Bytes": 7627348, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2021, - "Name": "Quem Mata A Mulher Mata O Melhor", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 262791, - "Bytes": 8640121, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 379, - "CustomerId": 48, - "InvoiceDate": "2013-08-02T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 1.98, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2022, - "Name": "Mundar�u", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 217521, - "Bytes": 7158975, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2023, - "Name": "O Bra�o Da Minha Guitarra", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 258351, - "Bytes": 8469531, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 379, - "CustomerId": 48, - "InvoiceDate": "2013-08-02T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 1.98, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2024, - "Name": "Deus", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 284160, - "Bytes": 9188110, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2025, - "Name": "M�e Terra", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 306625, - "Bytes": 9949269, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 380, - "CustomerId": 50, - "InvoiceDate": "2013-08-03T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 3.96, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2026, - "Name": "�s Vezes", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 330292, - "Bytes": 10706614, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 271, - "CustomerId": 51, - "InvoiceDate": "2012-04-03T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 13.86, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2027, - "Name": "Menino De Rua", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 329795, - "Bytes": 10784595, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 380, - "CustomerId": 50, - "InvoiceDate": "2013-08-03T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 3.96, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2028, - "Name": "Prazer E F�", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 214831, - "Bytes": 7031383, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2029, - "Name": "Elza", - "AlbumId": 165, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 199105, - "Bytes": 6517629, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 380, - "CustomerId": 50, - "InvoiceDate": "2013-08-03T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 3.96, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 112, - "Name": "Olodum", - "Albums": [ - { - "AlbumId": 166, - "Title": "Olodum", - "ArtistId": 112, - "Tracks": [ - { - "TrackId": 2030, - "Name": "Requebra", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 240744, - "Bytes": 8010811, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2031, - "Name": "Nossa Gente (Avisa L�)", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 188212, - "Bytes": 6233201, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 380, - "CustomerId": 50, - "InvoiceDate": "2013-08-03T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 3.96, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2032, - "Name": "Olodum - Alegria Geral", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 233404, - "Bytes": 7754245, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2033, - "Name": "Madag�scar Olodum", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 252264, - "Bytes": 8270584, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2034, - "Name": "Fara� Divindade Do Egito", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 228571, - "Bytes": 7523278, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2035, - "Name": "Todo Amor (Asas Da Liberdade)", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 245133, - "Bytes": 8121434, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 381, - "CustomerId": 54, - "InvoiceDate": "2013-08-04T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 5.94, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2036, - "Name": "Den�ncia", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 159555, - "Bytes": 5327433, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2037, - "Name": "Olodum, A Banda Do Pel�", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 146599, - "Bytes": 4900121, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2038, - "Name": "Cartao Postal", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 211565, - "Bytes": 7082301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2039, - "Name": "Jeito Faceiro", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 217286, - "Bytes": 7233608, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 381, - "CustomerId": 54, - "InvoiceDate": "2013-08-04T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 5.94, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2040, - "Name": "Revolta Olodum", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 230191, - "Bytes": 7557065, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 272, - "CustomerId": 6, - "InvoiceDate": "2012-04-11T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 0.99, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2041, - "Name": "Reggae Odoy�", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 224470, - "Bytes": 7499807, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 273, - "CustomerId": 7, - "InvoiceDate": "2012-04-24T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 1.98, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2042, - "Name": "Protesto Do Olodum (Ao Vivo)", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 206001, - "Bytes": 6766104, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 273, - "CustomerId": 7, - "InvoiceDate": "2012-04-24T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 1.98, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2043, - "Name": "Olodum - Smile (Instrumental)", - "AlbumId": 166, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 235833, - "Bytes": 7871409, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 381, - "CustomerId": 54, - "InvoiceDate": "2013-08-04T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 5.94, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 113, - "Name": "Os Paralamas Do Sucesso", - "Albums": [ - { - "AlbumId": 167, - "Title": "Ac�stico MTV", - "ArtistId": 113, - "Tracks": [ - { - "TrackId": 2044, - "Name": "Vulc�o Dub - Fui Eu", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Bi Ribeira/Herbert Vianna/Jo�o Barone", - "Milliseconds": 287059, - "Bytes": 9495202, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 274, - "CustomerId": 9, - "InvoiceDate": "2012-04-24T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 1.98, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2045, - "Name": "O Trem Da Juventude", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 225880, - "Bytes": 7507655, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2046, - "Name": "Manguetown", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chico Science/Dengue/L�cio Maia", - "Milliseconds": 162925, - "Bytes": 5382018, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 274, - "CustomerId": 9, - "InvoiceDate": "2012-04-24T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 1.98, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2047, - "Name": "Um Amor, Um Lugar", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 184555, - "Bytes": 6090334, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 381, - "CustomerId": 54, - "InvoiceDate": "2013-08-04T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 5.94, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2048, - "Name": "Bora-Bora", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 182987, - "Bytes": 6036046, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 275, - "CustomerId": 11, - "InvoiceDate": "2012-04-25T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 3.96, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2049, - "Name": "Vai Valer", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 206524, - "Bytes": 6899778, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 166, - "CustomerId": 12, - "InvoiceDate": "2010-12-25T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 13.86, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2050, - "Name": "I Feel Good (I Got You) - Sossego", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "James Brown/Tim Maia", - "Milliseconds": 244976, - "Bytes": 8091302, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 275, - "CustomerId": 11, - "InvoiceDate": "2012-04-25T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 3.96, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2051, - "Name": "Uns Dias", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 240796, - "Bytes": 7931552, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 381, - "CustomerId": 54, - "InvoiceDate": "2013-08-04T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 5.94, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2052, - "Name": "Sincero Breu", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "C. A./C.A./Celso Alvim/Herbert Vianna/M�rio Moura/Pedro Lu�s/Sidon Silva", - "Milliseconds": 208013, - "Bytes": 6921669, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 275, - "CustomerId": 11, - "InvoiceDate": "2012-04-25T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 3.96, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2053, - "Name": "Meu Erro", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 188577, - "Bytes": 6192791, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2054, - "Name": "Selvagem", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Bi Ribeiro/Herbert Vianna/Jo�o Barone", - "Milliseconds": 148558, - "Bytes": 4942831, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 275, - "CustomerId": 11, - "InvoiceDate": "2012-04-25T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 3.96, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2055, - "Name": "Bras�lia 5:31", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 178337, - "Bytes": 5857116, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 381, - "CustomerId": 54, - "InvoiceDate": "2013-08-04T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 5.94, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2056, - "Name": "Tendo A Lua", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna/Tet Tillett", - "Milliseconds": 198922, - "Bytes": 6568180, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2057, - "Name": "Que Pa�s � Este", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Renato Russo", - "Milliseconds": 216685, - "Bytes": 7137865, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2058, - "Name": "Navegar Impreciso", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 262870, - "Bytes": 8761283, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 276, - "CustomerId": 15, - "InvoiceDate": "2012-04-26T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 5.94, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2059, - "Name": "Feira Moderna", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Beto Guedes/Fernando Brant/L Borges", - "Milliseconds": 182517, - "Bytes": 6001793, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2060, - "Name": "Tequila - Lourinha Bombril (Parate Y Mira)", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Bahiano/Chuck Rio/Diego Blanco/Herbert Vianna", - "Milliseconds": 255738, - "Bytes": 8514961, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2061, - "Name": "Vamo Bat� Lata", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 228754, - "Bytes": 7585707, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2062, - "Name": "Life During Wartime", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Chris Frantz/David Byrne/Jerry Harrison/Tina Weymouth", - "Milliseconds": 259186, - "Bytes": 8543439, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 276, - "CustomerId": 15, - "InvoiceDate": "2012-04-26T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 5.94, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2063, - "Name": "Nebulosa Do Amor", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 203415, - "Bytes": 6732496, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 167, - "CustomerId": 26, - "InvoiceDate": "2011-01-02T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 0.99, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2064, - "Name": "Caleidosc�pio", - "AlbumId": 167, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 256522, - "Bytes": 8484597, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 168, - "CustomerId": 27, - "InvoiceDate": "2011-01-15T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 1.98, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 168, - "Title": "Arquivo II", - "ArtistId": 113, - "Tracks": [ - { - "TrackId": 2065, - "Name": "Trac Trac", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Fito Paez/Herbert Vianna", - "Milliseconds": 231653, - "Bytes": 7638256, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 168, - "CustomerId": 27, - "InvoiceDate": "2011-01-15T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 1.98, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2066, - "Name": "Tendo A Lua", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna/Tet� Tillet", - "Milliseconds": 219585, - "Bytes": 7342776, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 276, - "CustomerId": 15, - "InvoiceDate": "2012-04-26T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 5.94, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2067, - "Name": "Mensagen De Amor (2000)", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 183588, - "Bytes": 6061324, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 169, - "CustomerId": 29, - "InvoiceDate": "2011-01-15T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 1.98, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2068, - "Name": "Lourinha Bombril", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Bahiano/Diego Blanco/Herbert Vianna", - "Milliseconds": 159895, - "Bytes": 5301882, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2069, - "Name": "La Bella Luna", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 192653, - "Bytes": 6428598, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 169, - "CustomerId": 29, - "InvoiceDate": "2011-01-15T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 1.98, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2070, - "Name": "Busca Vida", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 176431, - "Bytes": 5798663, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 276, - "CustomerId": 15, - "InvoiceDate": "2012-04-26T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 5.94, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2071, - "Name": "Uma Brasileira", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Carlinhos Brown/Herbert Vianna", - "Milliseconds": 217573, - "Bytes": 7280574, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 170, - "CustomerId": 31, - "InvoiceDate": "2011-01-16T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 3.96, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2072, - "Name": "Luis Inacio (300 Picaretas)", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 198191, - "Bytes": 6576790, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 61, - "CustomerId": 32, - "InvoiceDate": "2009-09-16T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 13.86, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2073, - "Name": "Saber Amar", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 202788, - "Bytes": 6723733, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 170, - "CustomerId": 31, - "InvoiceDate": "2011-01-16T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 3.96, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2074, - "Name": "Ela Disse Adeus", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 226298, - "Bytes": 7608999, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 276, - "CustomerId": 15, - "InvoiceDate": "2012-04-26T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 5.94, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2075, - "Name": "O Amor Nao Sabe Esperar", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna", - "Milliseconds": 241084, - "Bytes": 8042534, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 170, - "CustomerId": 31, - "InvoiceDate": "2011-01-16T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 3.96, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2076, - "Name": "Aonde Quer Que Eu Va", - "AlbumId": 168, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Herbert Vianna/Paulo S�rgio Valle", - "Milliseconds": 258089, - "Bytes": 8470121, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 169, - "Title": "Arquivo Os Paralamas Do Sucesso", - "ArtistId": 113, - "Tracks": [ - { - "TrackId": 2077, - "Name": "Caleidosc�pio", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 211330, - "Bytes": 7000017, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 170, - "CustomerId": 31, - "InvoiceDate": "2011-01-16T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 3.96, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2078, - "Name": "�culos", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 219271, - "Bytes": 7262419, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 276, - "CustomerId": 15, - "InvoiceDate": "2012-04-26T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 5.94, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2079, - "Name": "Cinema Mudo", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 227918, - "Bytes": 7612168, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2080, - "Name": "Alagados", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 302393, - "Bytes": 10255463, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2081, - "Name": "Lanterna Dos Afogados", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 190197, - "Bytes": 6264318, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 171, - "CustomerId": 35, - "InvoiceDate": "2011-01-17T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2082, - "Name": "Mel� Do Marinheiro", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 208352, - "Bytes": 6905668, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2083, - "Name": "Vital E Sua Moto", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 210207, - "Bytes": 6902878, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2084, - "Name": "O Beco", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 189178, - "Bytes": 6293184, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2085, - "Name": "Meu Erro", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 208431, - "Bytes": 6893533, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 171, - "CustomerId": 35, - "InvoiceDate": "2011-01-17T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2086, - "Name": "Perplexo", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 161175, - "Bytes": 5355013, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 62, - "CustomerId": 46, - "InvoiceDate": "2009-09-24T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 0.99, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2087, - "Name": "Me Liga", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 229590, - "Bytes": 7565912, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 63, - "CustomerId": 47, - "InvoiceDate": "2009-10-07T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 1.98, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2088, - "Name": "Quase Um Segundo", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 275644, - "Bytes": 8971355, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 63, - "CustomerId": 47, - "InvoiceDate": "2009-10-07T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 1.98, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2089, - "Name": "Selvagem", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 245890, - "Bytes": 8141084, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 171, - "CustomerId": 35, - "InvoiceDate": "2011-01-17T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2090, - "Name": "Romance Ideal", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 250070, - "Bytes": 8260477, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 64, - "CustomerId": 49, - "InvoiceDate": "2009-10-07T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 1.98, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2091, - "Name": "Ser� Que Vai Chover?", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 337057, - "Bytes": 11133830, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2092, - "Name": "SKA", - "AlbumId": 169, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 148871, - "Bytes": 4943540, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 64, - "CustomerId": 49, - "InvoiceDate": "2009-10-07T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 1.98, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 114, - "Name": "Ozzy Osbourne", - "Albums": [ - { - "AlbumId": 170, - "Title": "Bark at the Moon (Remastered)", - "ArtistId": 114, - "Tracks": [ - { - "TrackId": 2093, - "Name": "Bark at the Moon", - "AlbumId": 170, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "O. Osbourne", - "Milliseconds": 257252, - "Bytes": 4601224, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 171, - "CustomerId": 35, - "InvoiceDate": "2011-01-17T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 171, - "Title": "Blizzard of Ozz", - "ArtistId": 114, - "Tracks": [ - { - "TrackId": 2094, - "Name": "I Don't Know", - "AlbumId": 171, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "B. Daisley, O. Osbourne \u0026 R. Rhoads", - "Milliseconds": 312980, - "Bytes": 5525339, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 65, - "CustomerId": 51, - "InvoiceDate": "2009-10-08T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 3.96, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2095, - "Name": "Crazy Train", - "AlbumId": 171, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "B. Daisley, O. Osbourne \u0026 R. Rhoads", - "Milliseconds": 295960, - "Bytes": 5255083, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 172, - "Title": "Diary of a Madman (Remastered)", - "ArtistId": 114, - "Tracks": [ - { - "TrackId": 2096, - "Name": "Flying High Again", - "AlbumId": 172, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "L. Kerslake, O. Osbourne, R. Daisley \u0026 R. Rhoads", - "Milliseconds": 290851, - "Bytes": 5179599, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 65, - "CustomerId": 51, - "InvoiceDate": "2009-10-08T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 3.96, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 173, - "Title": "No More Tears (Remastered)", - "ArtistId": 114, - "Tracks": [ - { - "TrackId": 2097, - "Name": "Mama, I'm Coming Home", - "AlbumId": 173, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "L. Kilmister, O. Osbourne \u0026 Z. Wylde", - "Milliseconds": 251586, - "Bytes": 4302390, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 171, - "CustomerId": 35, - "InvoiceDate": "2011-01-17T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2098, - "Name": "No More Tears", - "AlbumId": 173, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "J. Purdell, M. Inez, O. Osbourne, R. Castillo \u0026 Z. Wylde", - "Milliseconds": 444358, - "Bytes": 7362964, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 65, - "CustomerId": 51, - "InvoiceDate": "2009-10-08T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 3.96, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 174, - "Title": "Tribute", - "ArtistId": 114, - "Tracks": [ - { - "TrackId": 2099, - "Name": "I Don't Know", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 283088, - "Bytes": 9207869, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2100, - "Name": "Crazy Train", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 322716, - "Bytes": 10517408, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 65, - "CustomerId": 51, - "InvoiceDate": "2009-10-08T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 3.96, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2101, - "Name": "Believer", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 308897, - "Bytes": 10003794, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 171, - "CustomerId": 35, - "InvoiceDate": "2011-01-17T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2102, - "Name": "Mr. Crowley", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 344241, - "Bytes": 11184130, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2103, - "Name": "Flying High Again", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads, L. Kerslake", - "Milliseconds": 261224, - "Bytes": 8481822, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2104, - "Name": "Relvelation (Mother Earth)", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 349440, - "Bytes": 11367866, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 66, - "CustomerId": 55, - "InvoiceDate": "2009-10-09T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 5.94, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2105, - "Name": "Steal Away (The Night)", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 485720, - "Bytes": 15945806, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2106, - "Name": "Suicide Solution (With Guitar Solo)", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 467069, - "Bytes": 15119938, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2107, - "Name": "Iron Man", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "Milliseconds": 172120, - "Bytes": 5609799, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2108, - "Name": "Children Of The Grave", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "Milliseconds": 357067, - "Bytes": 11626740, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 66, - "CustomerId": 55, - "InvoiceDate": "2009-10-09T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 5.94, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2109, - "Name": "Paranoid", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "Milliseconds": 176352, - "Bytes": 5729813, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 382, - "CustomerId": 1, - "InvoiceDate": "2013-08-07T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 8.91, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2110, - "Name": "Goodbye To Romance", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 334393, - "Bytes": 10841337, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2111, - "Name": "No Bone Movies", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Milliseconds": 249208, - "Bytes": 8095199, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2112, - "Name": "Dee", - "AlbumId": 174, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "R. Rhoads", - "Milliseconds": 261302, - "Bytes": 8555963, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 66, - "CustomerId": 55, - "InvoiceDate": "2009-10-09T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 5.94, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 256, - "Title": "Speak of the Devil", - "ArtistId": 114, - "Tracks": [ - { - "TrackId": 3276, - "Name": "Sympton of the Universe", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 340890, - "Bytes": 5489313, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 101, - "CustomerId": 9, - "InvoiceDate": "2010-03-13T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 5.94, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3277, - "Name": "Snowblind", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 295960, - "Bytes": 4773171, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3278, - "Name": "Black Sabbath", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 364180, - "Bytes": 5860455, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3279, - "Name": "Fairies Wear Boots", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 392764, - "Bytes": 6315916, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3280, - "Name": "War Pigs", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 515435, - "Bytes": 8270194, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 101, - "CustomerId": 9, - "InvoiceDate": "2010-03-13T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 5.94, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3281, - "Name": "The Wizard", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 282678, - "Bytes": 4561796, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3282, - "Name": "N.I.B.", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 335248, - "Bytes": 5399456, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3283, - "Name": "Sweet Leaf", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 354706, - "Bytes": 5709700, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3284, - "Name": "Never Say Die", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 258343, - "Bytes": 4173799, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 101, - "CustomerId": 9, - "InvoiceDate": "2010-03-13T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 5.94, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3285, - "Name": "Sabbath, Bloody Sabbath", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 333622, - "Bytes": 5373633, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3286, - "Name": "Iron Man/Children of the Grave", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 552308, - "Bytes": 8858616, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3287, - "Name": "Paranoid", - "AlbumId": 256, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 189171, - "Bytes": 3071042, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 115, - "Name": "Page \u0026 Plant", - "Albums": [ - { - "AlbumId": 175, - "Title": "Walking Into Clarksdale", - "ArtistId": 115, - "Tracks": [ - { - "TrackId": 2113, - "Name": "Shining In The Light", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 240796, - "Bytes": 7951688, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2114, - "Name": "When The World Was Young", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 373394, - "Bytes": 12198930, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2115, - "Name": "Upon A Golden Horse", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 232359, - "Bytes": 7594829, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2116, - "Name": "Blue Train", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 405028, - "Bytes": 13170391, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 66, - "CustomerId": 55, - "InvoiceDate": "2009-10-09T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 5.94, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2117, - "Name": "Please Read The Letter", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 262112, - "Bytes": 8603372, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2118, - "Name": "Most High", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 336535, - "Bytes": 10999203, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2119, - "Name": "Heart In Your Hand", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 230896, - "Bytes": 7598019, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2120, - "Name": "Walking Into Clarksdale", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 318511, - "Bytes": 10396315, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 66, - "CustomerId": 55, - "InvoiceDate": "2009-10-09T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 5.94, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2121, - "Name": "Burning Up", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 321619, - "Bytes": 10525136, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2122, - "Name": "When I Was A Child", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 345626, - "Bytes": 11249456, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2123, - "Name": "House Of Love", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 335699, - "Bytes": 10990880, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2124, - "Name": "Sons Of Freedom", - "AlbumId": 175, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Milliseconds": 246465, - "Bytes": 8087944, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 66, - "CustomerId": 55, - "InvoiceDate": "2009-10-09T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 5.94, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 116, - "Name": "Passengers", - "Albums": [ - { - "AlbumId": 176, - "Title": "Original Soundtracks 1", - "ArtistId": 116, - "Tracks": [ - { - "TrackId": 2125, - "Name": "United Colours", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 330266, - "Bytes": 10939131, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2126, - "Name": "Slug", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 281469, - "Bytes": 9295950, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2127, - "Name": "Your Blue Room", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 328228, - "Bytes": 10867860, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2128, - "Name": "Always Forever Now", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 383764, - "Bytes": 12727928, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2129, - "Name": "A Different Kind Of Blue", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 120816, - "Bytes": 3884133, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2130, - "Name": "Beach Sequence", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 212297, - "Bytes": 6928259, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2131, - "Name": "Miss Sarajevo", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 340767, - "Bytes": 11064884, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2132, - "Name": "Ito Okashi", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 205087, - "Bytes": 6572813, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 277, - "CustomerId": 21, - "InvoiceDate": "2012-04-29T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 8.91, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2133, - "Name": "One Minute Warning", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 279693, - "Bytes": 9335453, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2134, - "Name": "Corpse (These Chains Are Way Too Long)", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 214909, - "Bytes": 6920451, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2135, - "Name": "Elvis Ate America", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 180166, - "Bytes": 5851053, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2136, - "Name": "Plot 180", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 221596, - "Bytes": 7253729, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2137, - "Name": "Theme From The Swan", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 203911, - "Bytes": 6638076, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2138, - "Name": "Theme From Let's Go Native", - "AlbumId": 176, - "MediaTypeId": 1, - "GenreId": 10, - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge \u0026 Larry Mullen Jnr.", - "Milliseconds": 186723, - "Bytes": 6179777, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 117, - "Name": "Paul D'Ianno", - "Albums": [ - { - "AlbumId": 177, - "Title": "The Beast Live", - "ArtistId": 117, - "Tracks": [ - { - "TrackId": 2139, - "Name": "Wrathchild", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 170396, - "Bytes": 5499390, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2140, - "Name": "Killers", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Di'Anno/Steve Harris", - "Milliseconds": 309995, - "Bytes": 10009697, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2141, - "Name": "Prowler", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 240274, - "Bytes": 7782963, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2142, - "Name": "Murders In The Rue Morgue", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 258638, - "Bytes": 8360999, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2143, - "Name": "Women In Uniform", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Greg Macainsh", - "Milliseconds": 189936, - "Bytes": 6139651, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2144, - "Name": "Remember Tomorrow", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Di'Anno/Steve Harris", - "Milliseconds": 326426, - "Bytes": 10577976, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2145, - "Name": "Sanctuary", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "Milliseconds": 198844, - "Bytes": 6423543, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2146, - "Name": "Running Free", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Paul Di'Anno/Steve Harris", - "Milliseconds": 199706, - "Bytes": 6483496, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2147, - "Name": "Phantom Of The Opera", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 418168, - "Bytes": 13585530, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2148, - "Name": "Iron Maiden", - "AlbumId": 177, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Steve Harris", - "Milliseconds": 235232, - "Bytes": 7600077, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 118, - "Name": "Pearl Jam", - "Albums": [ - { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]", - "ArtistId": 118, - "Tracks": [ - { - "TrackId": 2149, - "Name": "Corduroy", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pearl Jam \u0026 Eddie Vedder", - "Milliseconds": 305293, - "Bytes": 9991106, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2150, - "Name": "Given To Fly", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder \u0026 Mike McCready", - "Milliseconds": 233613, - "Bytes": 7678347, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2151, - "Name": "Hail, Hail", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Stone Gossard \u0026 Eddie Vedder \u0026 Jeff Ament \u0026 Mike McCready", - "Milliseconds": 223764, - "Bytes": 7364206, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2152, - "Name": "Daughter", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese \u0026 Jeff Ament \u0026 Stone Gossard \u0026 Mike McCready \u0026 Eddie Vedder", - "Milliseconds": 407484, - "Bytes": 13420697, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2153, - "Name": "Elderly Woman Behind The Counter In A Small Town", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese \u0026 Jeff Ament \u0026 Stone Gossard \u0026 Mike McCready \u0026 Eddie Vedder", - "Milliseconds": 229328, - "Bytes": 7509304, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2154, - "Name": "Untitled", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pearl Jam", - "Milliseconds": 122801, - "Bytes": 3957141, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2155, - "Name": "MFC", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 148192, - "Bytes": 4817665, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 172, - "CustomerId": 41, - "InvoiceDate": "2011-01-20T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 8.91, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2156, - "Name": "Go", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese \u0026 Jeff Ament \u0026 Stone Gossard \u0026 Mike McCready \u0026 Eddie Vedder", - "Milliseconds": 161541, - "Bytes": 5290810, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2157, - "Name": "Red Mosquito", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament \u0026 Stone Gossard \u0026 Jack Irons \u0026 Mike McCready \u0026 Eddie Vedder", - "Milliseconds": 242991, - "Bytes": 7944923, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2158, - "Name": "Even Flow", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Stone Gossard \u0026 Eddie Vedder", - "Milliseconds": 317100, - "Bytes": 10394239, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2159, - "Name": "Off He Goes", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 343222, - "Bytes": 11245109, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2160, - "Name": "Nothingman", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament \u0026 Eddie Vedder", - "Milliseconds": 278595, - "Bytes": 9107017, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2161, - "Name": "Do The Evolution", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder \u0026 Stone Gossard", - "Milliseconds": 225462, - "Bytes": 7377286, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2162, - "Name": "Better Man", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 246204, - "Bytes": 8019563, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2163, - "Name": "Black", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Stone Gossard \u0026 Eddie Vedder", - "Milliseconds": 415712, - "Bytes": 13580009, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2164, - "Name": "F*Ckin' Up", - "AlbumId": 178, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Neil Young", - "Milliseconds": 377652, - "Bytes": 12360893, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 179, - "Title": "Pearl Jam", - "ArtistId": 118, - "Tracks": [ - { - "TrackId": 2165, - "Name": "Life Wasted", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Stone Gossard", - "Milliseconds": 234344, - "Bytes": 7610169, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2166, - "Name": "World Wide Suicide", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Eddie Vedder", - "Milliseconds": 209188, - "Bytes": 6885908, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2167, - "Name": "Comatose", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike McCready \u0026 Stone Gossard", - "Milliseconds": 139990, - "Bytes": 4574516, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2168, - "Name": "Severed Hand", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Eddie Vedder", - "Milliseconds": 270341, - "Bytes": 8817438, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2169, - "Name": "Marker In The Sand", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mike McCready", - "Milliseconds": 263235, - "Bytes": 8656578, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2170, - "Name": "Parachutes", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Stone Gossard", - "Milliseconds": 216555, - "Bytes": 7074973, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2171, - "Name": "Unemployable", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Matt Cameron \u0026 Mike McCready", - "Milliseconds": 184398, - "Bytes": 6066542, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2172, - "Name": "Big Wave", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Jeff Ament", - "Milliseconds": 178573, - "Bytes": 5858788, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2173, - "Name": "Gone", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Eddie Vedder", - "Milliseconds": 249547, - "Bytes": 8158204, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2174, - "Name": "Wasted Reprise", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Stone Gossard", - "Milliseconds": 53733, - "Bytes": 1731020, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2175, - "Name": "Army Reserve", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Jeff Ament", - "Milliseconds": 225567, - "Bytes": 7393771, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2176, - "Name": "Come Back", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Eddie Vedder \u0026 Mike McCready", - "Milliseconds": 329743, - "Bytes": 10768701, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2177, - "Name": "Inside Job", - "AlbumId": 179, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Eddie Vedder \u0026 Mike McCready", - "Milliseconds": 428643, - "Bytes": 14006924, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 180, - "Title": "Riot Act", - "ArtistId": 118, - "Tracks": [ - { - "TrackId": 2178, - "Name": "Can't Keep", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 219428, - "Bytes": 7215713, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 67, - "CustomerId": 2, - "InvoiceDate": "2009-10-12T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 8.91, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2179, - "Name": "Save You", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder/Jeff Ament/Matt Cameron/Mike McCready/Stone Gossard", - "Milliseconds": 230112, - "Bytes": 7609110, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2180, - "Name": "Love Boat Captain", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 276453, - "Bytes": 9016789, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2181, - "Name": "Cropduster", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Matt Cameron", - "Milliseconds": 231888, - "Bytes": 7588928, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2182, - "Name": "Ghost", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament", - "Milliseconds": 195108, - "Bytes": 6383772, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2183, - "Name": "I Am Mine", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 215719, - "Bytes": 7086901, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2184, - "Name": "Thumbing My Way", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 250226, - "Bytes": 8201437, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2185, - "Name": "You Are", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Matt Cameron", - "Milliseconds": 270863, - "Bytes": 8938409, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2186, - "Name": "Get Right", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Matt Cameron", - "Milliseconds": 158589, - "Bytes": 5223345, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2187, - "Name": "Green Disease", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 161253, - "Bytes": 5375818, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2188, - "Name": "Help Help", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament", - "Milliseconds": 215092, - "Bytes": 7033002, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2189, - "Name": "Bushleager", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Stone Gossard", - "Milliseconds": 237479, - "Bytes": 7849757, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2190, - "Name": "1/2 Full", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament", - "Milliseconds": 251010, - "Bytes": 8197219, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2191, - "Name": "Arc", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pearl Jam", - "Milliseconds": 65593, - "Bytes": 2099421, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2192, - "Name": "All or None", - "AlbumId": 180, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Stone Gossard", - "Milliseconds": 277655, - "Bytes": 9104728, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 181, - "Title": "Ten", - "ArtistId": 118, - "Tracks": [ - { - "TrackId": 2193, - "Name": "Once", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Stone Gossard", - "Milliseconds": 231758, - "Bytes": 7561555, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2194, - "Name": "Evenflow", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Stone Gossard", - "Milliseconds": 293720, - "Bytes": 9622017, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": null - }, - { - "TrackId": 2195, - "Name": "Alive", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Stone Gossard", - "Milliseconds": 341080, - "Bytes": 11176623, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2196, - "Name": "Why Go", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament", - "Milliseconds": 200254, - "Bytes": 6539287, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2197, - "Name": "Black", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Krusen/Stone Gossard", - "Milliseconds": 343823, - "Bytes": 11213314, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2198, - "Name": "Jeremy", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament", - "Milliseconds": 318981, - "Bytes": 10447222, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": null - }, - { - "TrackId": 2199, - "Name": "Oceans", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament/Stone Gossard", - "Milliseconds": 162194, - "Bytes": 5282368, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2200, - "Name": "Porch", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Eddie Vedder", - "Milliseconds": 210520, - "Bytes": 6877475, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2201, - "Name": "Garden", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament/Stone Gossard", - "Milliseconds": 299154, - "Bytes": 9740738, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2202, - "Name": "Deep", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament/Stone Gossard", - "Milliseconds": 258324, - "Bytes": 8432497, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2203, - "Name": "Release", - "AlbumId": 181, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 546063, - "Bytes": 17802673, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 182, - "Title": "Vs.", - "ArtistId": 118, - "Tracks": [ - { - "TrackId": 2204, - "Name": "Go", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 193123, - "Bytes": 6351920, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2205, - "Name": "Animal", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 169325, - "Bytes": 5503459, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2206, - "Name": "Daughter", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 235598, - "Bytes": 7824586, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": null - }, - { - "TrackId": 2207, - "Name": "Glorified G", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 206968, - "Bytes": 6772116, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2208, - "Name": "Dissident", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 215510, - "Bytes": 7034500, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2209, - "Name": "W.M.A.", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 359262, - "Bytes": 12037261, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2210, - "Name": "Blood", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 170631, - "Bytes": 5551478, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2211, - "Name": "Rearviewmirror", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 284186, - "Bytes": 9321053, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2212, - "Name": "Rats", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 255425, - "Bytes": 8341934, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2213, - "Name": "Elderly Woman Behind The Counter In A Small Town", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 196336, - "Bytes": 6499398, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2214, - "Name": "Leash", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 189257, - "Bytes": 6191560, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2215, - "Name": "Indifference", - "AlbumId": 182, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Milliseconds": 302053, - "Bytes": 9756133, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 119, - "Name": "Peter Tosh", - "Albums": null - }, - { - "ArtistId": 120, - "Name": "Pink Floyd", - "Albums": [ - { - "AlbumId": 183, - "Title": "Dark Side Of The Moon", - "ArtistId": 120, - "Tracks": [ - { - "TrackId": 2229, - "Name": "Speak To Me/Breathe", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mason/Waters, Gilmour, Wright", - "Milliseconds": 234213, - "Bytes": 7631305, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2230, - "Name": "On The Run", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gilmour, Waters", - "Milliseconds": 214595, - "Bytes": 7206300, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2231, - "Name": "Time", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mason, Waters, Wright, Gilmour", - "Milliseconds": 425195, - "Bytes": 13955426, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2232, - "Name": "The Great Gig In The Sky", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Wright, Waters", - "Milliseconds": 284055, - "Bytes": 9147563, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2233, - "Name": "Money", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Waters", - "Milliseconds": 391888, - "Bytes": 12930070, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2234, - "Name": "Us And Them", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Waters, Wright", - "Milliseconds": 461035, - "Bytes": 15000299, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2235, - "Name": "Any Colour You Like", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Gilmour, Mason, Wright, Waters", - "Milliseconds": 205740, - "Bytes": 6707989, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 383, - "CustomerId": 10, - "InvoiceDate": "2013-08-12T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 13.86, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2236, - "Name": "Brain Damage", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Waters", - "Milliseconds": 230556, - "Bytes": 7497655, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2237, - "Name": "Eclipse", - "AlbumId": 183, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Waters", - "Milliseconds": 125361, - "Bytes": 4065299, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 121, - "Name": "Planet Hemp", - "Albums": [ - { - "AlbumId": 184, - "Title": "Os C�es Ladram Mas A Caravana N�o P�ra", - "ArtistId": 121, - "Tracks": [ - { - "TrackId": 2238, - "Name": "ZeroVinteUm", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 315637, - "Bytes": 10426550, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2239, - "Name": "Queimando Tudo", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 172591, - "Bytes": 5723677, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2240, - "Name": "Hip Hop Rio", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 151536, - "Bytes": 4991935, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2241, - "Name": "Bossa", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 29048, - "Bytes": 967098, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2242, - "Name": "100% HardCore", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 165146, - "Bytes": 5407744, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2243, - "Name": "Biruta", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 213263, - "Bytes": 7108200, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2244, - "Name": "M�o Na Cabe�a", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 202631, - "Bytes": 6642753, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2245, - "Name": "O Bicho T� Pregando", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 171964, - "Bytes": 5683369, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 173, - "CustomerId": 50, - "InvoiceDate": "2011-01-25T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 13.86, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2246, - "Name": "Adoled (Ocean)", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 185103, - "Bytes": 6009946, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2247, - "Name": "Seus Amigos", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 100858, - "Bytes": 3304738, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2248, - "Name": "Paga Pau", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 197485, - "Bytes": 6529041, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2249, - "Name": "Rappers Reais", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 202004, - "Bytes": 6684160, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 278, - "CustomerId": 30, - "InvoiceDate": "2012-05-04T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 13.86, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 384, - "CustomerId": 24, - "InvoiceDate": "2013-08-20T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 0.99, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2250, - "Name": "Nega Do Cabelo Duro", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 121808, - "Bytes": 4116536, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 385, - "CustomerId": 25, - "InvoiceDate": "2013-09-02T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 1.98, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2251, - "Name": "Hemp Family", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 205923, - "Bytes": 6806900, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 385, - "CustomerId": 25, - "InvoiceDate": "2013-09-02T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 1.98, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2252, - "Name": "Quem Me Cobrou?", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 121704, - "Bytes": 3947664, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2253, - "Name": "Se Liga", - "AlbumId": 184, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": null, - "Milliseconds": 410409, - "Bytes": 13559173, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 386, - "CustomerId": 27, - "InvoiceDate": "2013-09-02T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 1.98, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 122, - "Name": "R.E.M. Feat. Kate Pearson", - "Albums": [ - { - "AlbumId": 187, - "Title": "Out Of Time", - "ArtistId": 122, - "Tracks": [ - { - "TrackId": 2282, - "Name": "Shiny Happy People", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 226298, - "Bytes": 7475323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 282, - "CustomerId": 49, - "InvoiceDate": "2012-05-26T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 3.96, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2283, - "Name": "Me In Honey", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 246674, - "Bytes": 8194751, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 388, - "CustomerId": 33, - "InvoiceDate": "2013-09-04T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 5.94, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2284, - "Name": "Radio Song", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 255477, - "Bytes": 8421172, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 282, - "CustomerId": 49, - "InvoiceDate": "2012-05-26T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 3.96, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2310, - "Name": "Losing My Religion", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 269035, - "Bytes": 8885672, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 283, - "CustomerId": 53, - "InvoiceDate": "2012-05-27T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 5.94, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2311, - "Name": "Low", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 296777, - "Bytes": 9633860, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2312, - "Name": "Near Wild Heaven", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 199862, - "Bytes": 6610009, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2313, - "Name": "Endgame", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 230687, - "Bytes": 7664479, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 178, - "CustomerId": 14, - "InvoiceDate": "2011-02-17T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 5.94, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2314, - "Name": "Belong", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 247013, - "Bytes": 8219375, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2315, - "Name": "Half A World Away", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 208431, - "Bytes": 6837283, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2316, - "Name": "Texarkana", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 220081, - "Bytes": 7260681, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2317, - "Name": "Country Feedback", - "AlbumId": 187, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Milliseconds": 249782, - "Bytes": 8178943, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 178, - "CustomerId": 14, - "InvoiceDate": "2011-02-17T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 5.94, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 123, - "Name": "R.E.M. Feat. KRS-One", - "Albums": null - }, - { - "ArtistId": 124, - "Name": "R.E.M.", - "Albums": [ - { - "AlbumId": 188, - "Title": "Green", - "ArtistId": 124, - "Tracks": [ - { - "TrackId": 2285, - "Name": "Pop Song 89", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 185730, - "Bytes": 6132218, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2286, - "Name": "Get Up", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 160235, - "Bytes": 5264376, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 282, - "CustomerId": 49, - "InvoiceDate": "2012-05-26T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 3.96, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2287, - "Name": "You Are The Everything", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 226298, - "Bytes": 7373181, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 388, - "CustomerId": 33, - "InvoiceDate": "2013-09-04T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 5.94, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2288, - "Name": "Stand", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 192862, - "Bytes": 6349090, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2289, - "Name": "World Leader Pretend", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 259761, - "Bytes": 8537282, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2290, - "Name": "The Wrong Child", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 216633, - "Bytes": 7065060, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 283, - "CustomerId": 53, - "InvoiceDate": "2012-05-27T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 5.94, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2291, - "Name": "Orange Crush", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 231706, - "Bytes": 7742894, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2292, - "Name": "Turn You Inside-Out", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 257358, - "Bytes": 8395671, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2293, - "Name": "Hairshirt", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 235911, - "Bytes": 7753807, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2294, - "Name": "I Remember California", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 304013, - "Bytes": 9950311, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 283, - "CustomerId": 53, - "InvoiceDate": "2012-05-27T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 5.94, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2295, - "Name": "Untitled", - "AlbumId": 188, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 191503, - "Bytes": 6332426, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 174, - "CustomerId": 5, - "InvoiceDate": "2011-02-02T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 0.99, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 189, - "Title": "New Adventures In Hi-Fi", - "ArtistId": 124, - "Tracks": [ - { - "TrackId": 2296, - "Name": "How The West Was Won And Where It Got Us", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 271151, - "Bytes": 8994291, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 175, - "CustomerId": 6, - "InvoiceDate": "2011-02-15T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 1.98, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2297, - "Name": "The Wake-Up Bomb", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 308532, - "Bytes": 10077337, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 175, - "CustomerId": 6, - "InvoiceDate": "2011-02-15T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 1.98, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2298, - "Name": "New Test Leper", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 326791, - "Bytes": 10866447, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 283, - "CustomerId": 53, - "InvoiceDate": "2012-05-27T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 5.94, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2299, - "Name": "Undertow", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 309498, - "Bytes": 10131005, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 176, - "CustomerId": 8, - "InvoiceDate": "2011-02-15T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 1.98, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2300, - "Name": "E-Bow The Letter", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 324963, - "Bytes": 10714576, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2301, - "Name": "Leave", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 437968, - "Bytes": 14433365, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 176, - "CustomerId": 8, - "InvoiceDate": "2011-02-15T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 1.98, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2302, - "Name": "Departure", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 209423, - "Bytes": 6818425, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 283, - "CustomerId": 53, - "InvoiceDate": "2012-05-27T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 5.94, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2303, - "Name": "Bittersweet Me", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 245812, - "Bytes": 8114718, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 177, - "CustomerId": 10, - "InvoiceDate": "2011-02-16T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 3.96, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2304, - "Name": "Be Mine", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 333087, - "Bytes": 10790541, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 68, - "CustomerId": 11, - "InvoiceDate": "2009-10-17T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 13.86, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2305, - "Name": "Binky The Doormat", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 301688, - "Bytes": 9950320, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 177, - "CustomerId": 10, - "InvoiceDate": "2011-02-16T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 3.96, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2306, - "Name": "Zither", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 154148, - "Bytes": 5032962, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 283, - "CustomerId": 53, - "InvoiceDate": "2012-05-27T00:00:00Z", - "BillingAddress": "113 Lupus St", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "SW1V 3EN", - "Total": 5.94, - "Customer": { - "CustomerId": 53, - "FirstName": "Phil", - "LastName": "Hughes", - "Company": null, - "Address": "113 Lupus St", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "SW1V 3EN", - "Phone": "+44 020 7976 5722", - "Fax": null, - "Email": "phil.hughes@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2307, - "Name": "So Fast, So Numb", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 252682, - "Bytes": 8341223, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 177, - "CustomerId": 10, - "InvoiceDate": "2011-02-16T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 3.96, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2308, - "Name": "Low Desert", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 212062, - "Bytes": 6989288, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2309, - "Name": "Electrolite", - "AlbumId": 189, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Milliseconds": 245315, - "Bytes": 8051199, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 177, - "CustomerId": 10, - "InvoiceDate": "2011-02-16T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 3.96, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years", - "ArtistId": 124, - "Tracks": [ - { - "TrackId": 2318, - "Name": "Carnival Of Sorts", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 233482, - "Bytes": 7669658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 69, - "CustomerId": 25, - "InvoiceDate": "2009-10-25T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 0.99, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2319, - "Name": "Radio Free Aurope", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 245315, - "Bytes": 8163490, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 70, - "CustomerId": 26, - "InvoiceDate": "2009-11-07T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 1.98, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2320, - "Name": "Perfect Circle", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 208509, - "Bytes": 6898067, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 70, - "CustomerId": 26, - "InvoiceDate": "2009-11-07T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 1.98, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2321, - "Name": "Talk About The Passion", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 203206, - "Bytes": 6725435, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 178, - "CustomerId": 14, - "InvoiceDate": "2011-02-17T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 5.94, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2322, - "Name": "So Central Rain", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 194768, - "Bytes": 6414550, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 71, - "CustomerId": 28, - "InvoiceDate": "2009-11-07T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 1.98, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2323, - "Name": "Don't Go Back To Rockville", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 272352, - "Bytes": 9010715, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2324, - "Name": "Pretty Persuasion", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 229929, - "Bytes": 7577754, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 71, - "CustomerId": 28, - "InvoiceDate": "2009-11-07T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 1.98, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2325, - "Name": "Green Grow The Rushes", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 225671, - "Bytes": 7422425, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 178, - "CustomerId": 14, - "InvoiceDate": "2011-02-17T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 5.94, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2326, - "Name": "Can't Get There From Here", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 220630, - "Bytes": 7285936, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 72, - "CustomerId": 30, - "InvoiceDate": "2009-11-08T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 3.96, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2327, - "Name": "Driver 8", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 204747, - "Bytes": 6779076, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2328, - "Name": "Fall On Me", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 172016, - "Bytes": 5676811, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 72, - "CustomerId": 30, - "InvoiceDate": "2009-11-08T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 3.96, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2329, - "Name": "I Believe", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 227709, - "Bytes": 7542929, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 178, - "CustomerId": 14, - "InvoiceDate": "2011-02-17T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 5.94, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2330, - "Name": "Cuyahoga", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 260623, - "Bytes": 8591057, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 72, - "CustomerId": 30, - "InvoiceDate": "2009-11-08T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 3.96, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2331, - "Name": "The One I Love", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 197355, - "Bytes": 6495125, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2332, - "Name": "The Finest Worksong", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 229276, - "Bytes": 7574856, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 72, - "CustomerId": 30, - "InvoiceDate": "2009-11-08T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 3.96, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2333, - "Name": "It's The End Of The World As We Know It (And I Feel Fine)", - "AlbumId": 190, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "R.E.M.", - "Milliseconds": 244819, - "Bytes": 7998987, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 178, - "CustomerId": 14, - "InvoiceDate": "2011-02-17T00:00:00Z", - "BillingAddress": "8210 111 ST NW", - "BillingCity": "Edmonton", - "BillingState": "AB", - "BillingCountry": "Canada", - "BillingPostalCode": "T6G 2C7", - "Total": 5.94, - "Customer": { - "CustomerId": 14, - "FirstName": "Mark", - "LastName": "Philips", - "Company": "Telus", - "Address": "8210 111 ST NW", - "City": "Edmonton", - "State": "AB", - "Country": "Canada", - "PostalCode": "T6G 2C7", - "Phone": "+1 (780) 434-4554", - "Fax": "+1 (780) 434-5565", - "Email": "mphilips12@shaw.ca", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 125, - "Name": "Raimundos", - "Albums": [ - { - "AlbumId": 191, - "Title": "Cesta B�sica", - "ArtistId": 125, - "Tracks": [ - { - "TrackId": 2334, - "Name": "Infeliz Natal", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 138266, - "Bytes": 4503299, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2335, - "Name": "A Sua", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 142132, - "Bytes": 4622064, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2336, - "Name": "Papeau Nuky Doe", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 121652, - "Bytes": 3995022, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 73, - "CustomerId": 34, - "InvoiceDate": "2009-11-09T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2337, - "Name": "Merry Christmas", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 126040, - "Bytes": 4166652, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2338, - "Name": "Bodies", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 180035, - "Bytes": 5873778, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2339, - "Name": "Puteiro Em Jo�o Pessoa", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 195578, - "Bytes": 6395490, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2340, - "Name": "Esporrei Na Manivela", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 293276, - "Bytes": 9618499, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 73, - "CustomerId": 34, - "InvoiceDate": "2009-11-09T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2341, - "Name": "B�-a-B�", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 249051, - "Bytes": 8130636, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 389, - "CustomerId": 39, - "InvoiceDate": "2013-09-07T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 8.91, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2342, - "Name": "Cajueiro", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 158589, - "Bytes": 5164837, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2343, - "Name": "Palhas Do Coqueiro", - "AlbumId": 191, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Rodolfo", - "Milliseconds": 133851, - "Bytes": 4396466, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 126, - "Name": "Raul Seixas", - "Albums": [ - { - "AlbumId": 192, - "Title": "Raul Seixas", - "ArtistId": 126, - "Tracks": [ - { - "TrackId": 2344, - "Name": "Maluco Beleza", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 203206, - "Bytes": 6628067, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 73, - "CustomerId": 34, - "InvoiceDate": "2009-11-09T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2345, - "Name": "O Dia Em Que A Terra Parou", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 261720, - "Bytes": 8586678, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2346, - "Name": "No Fundo Do Quintal Da Escola", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 177606, - "Bytes": 5836953, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2347, - "Name": "O Segredo Do Universo", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 192679, - "Bytes": 6315187, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2348, - "Name": "As Profecias", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 232515, - "Bytes": 7657732, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 73, - "CustomerId": 34, - "InvoiceDate": "2009-11-09T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2349, - "Name": "Mata Virgem", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 142602, - "Bytes": 4690029, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2350, - "Name": "Sapato 36", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 196702, - "Bytes": 6507301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2351, - "Name": "Todo Mundo Explica", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 134896, - "Bytes": 4449772, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2352, - "Name": "Que Luz � Essa", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 165067, - "Bytes": 5620058, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 73, - "CustomerId": 34, - "InvoiceDate": "2009-11-09T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2353, - "Name": "Diamante De Mendigo", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 206053, - "Bytes": 6775101, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2354, - "Name": "Neg�cio �", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 175464, - "Bytes": 5826775, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2355, - "Name": "Muita Estrela, Pouca Constela��o", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 268068, - "Bytes": 8781021, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2356, - "Name": "S�culo XXI", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 244897, - "Bytes": 8040563, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 73, - "CustomerId": 34, - "InvoiceDate": "2009-11-09T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 5.94, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2357, - "Name": "Rock Das Aranhas (Ao Vivo) (Live)", - "AlbumId": 192, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 231836, - "Bytes": 7591945, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 127, - "Name": "Red Hot Chili Peppers", - "Albums": [ - { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik", - "ArtistId": 127, - "Tracks": [ - { - "TrackId": 2358, - "Name": "The Power Of Equality", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 243591, - "Bytes": 8148266, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2359, - "Name": "If You Have To Ask", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 216790, - "Bytes": 7199175, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2360, - "Name": "Breaking The Girl", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 295497, - "Bytes": 9805526, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2361, - "Name": "Funky Monks", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 323395, - "Bytes": 10708168, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2362, - "Name": "Suck My Kiss", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 217234, - "Bytes": 7129137, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2363, - "Name": "I Could Have Lied", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 244506, - "Bytes": 8088244, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2364, - "Name": "Mellowship Slinky In B Major", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 240091, - "Bytes": 7971384, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 284, - "CustomerId": 59, - "InvoiceDate": "2012-05-30T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 8.91, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2365, - "Name": "The Righteous \u0026 The Wicked", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 248084, - "Bytes": 8134096, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2366, - "Name": "Give It Away", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 283010, - "Bytes": 9308997, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2367, - "Name": "Blood Sugar Sex Magik", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 271229, - "Bytes": 8940573, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2368, - "Name": "Under The Bridge", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 264359, - "Bytes": 8682716, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2369, - "Name": "Naked In The Rain", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 265717, - "Bytes": 8724674, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2370, - "Name": "Apache Rose Peacock", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 282226, - "Bytes": 9312588, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2371, - "Name": "The Greeting Song", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 193593, - "Bytes": 6346507, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2372, - "Name": "My Lovely Man", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 279118, - "Bytes": 9220114, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2373, - "Name": "Sir Psycho Sexy", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 496692, - "Bytes": 16354362, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2374, - "Name": "They're Red Hot", - "AlbumId": 193, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Robert Johnson", - "Milliseconds": 71941, - "Bytes": 2382220, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 194, - "Title": "By The Way", - "ArtistId": 127, - "Tracks": [ - { - "TrackId": 2375, - "Name": "By The Way", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 218017, - "Bytes": 7197430, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2376, - "Name": "Universally Speaking", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 259213, - "Bytes": 8501904, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2377, - "Name": "This Is The Place", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 257906, - "Bytes": 8469765, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2378, - "Name": "Dosed", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 312058, - "Bytes": 10235611, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2379, - "Name": "Don't Forget Me", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 277995, - "Bytes": 9107071, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2380, - "Name": "The Zephyr Song", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 232960, - "Bytes": 7690312, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2381, - "Name": "Can't Stop", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 269400, - "Bytes": 8872479, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2382, - "Name": "I Could Die For You", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 193906, - "Bytes": 6333311, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2383, - "Name": "Midnight", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 295810, - "Bytes": 9702450, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2384, - "Name": "Throw Away Your Television", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 224574, - "Bytes": 7483526, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2385, - "Name": "Cabron", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 218592, - "Bytes": 7458864, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2386, - "Name": "Tear", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 317413, - "Bytes": 10395500, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2387, - "Name": "On Mercury", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 208509, - "Bytes": 6834762, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 179, - "CustomerId": 20, - "InvoiceDate": "2011-02-20T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 8.91, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2388, - "Name": "Minor Thing", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 217835, - "Bytes": 7148115, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2389, - "Name": "Warm Tape", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 256653, - "Bytes": 8358200, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2390, - "Name": "Venice Queen", - "AlbumId": 194, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Milliseconds": 369110, - "Bytes": 12280381, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 195, - "Title": "Californication", - "ArtistId": 127, - "Tracks": [ - { - "TrackId": 2391, - "Name": "Around The World", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 238837, - "Bytes": 7859167, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2392, - "Name": "Parallel Universe", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 270654, - "Bytes": 8958519, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2393, - "Name": "Scar Tissue", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 217469, - "Bytes": 7153744, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2394, - "Name": "Otherside", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 255973, - "Bytes": 8357989, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2395, - "Name": "Get On Top", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 198164, - "Bytes": 6587883, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2396, - "Name": "Californication", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 321671, - "Bytes": 10568999, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2397, - "Name": "Easily", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 231418, - "Bytes": 7504534, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2398, - "Name": "Porcelain", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 163787, - "Bytes": 5278793, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2399, - "Name": "Emit Remmus", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 240300, - "Bytes": 7901717, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2400, - "Name": "I Like Dirt", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 157727, - "Bytes": 5225917, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2401, - "Name": "This Velvet Glove", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 225280, - "Bytes": 7480537, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2402, - "Name": "Savior", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Milliseconds": 292493, - "Bytes": 9551885, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2403, - "Name": "Purple Stain", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 253440, - "Bytes": 8359971, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2404, - "Name": "Right On Time", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 112613, - "Bytes": 3722219, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2405, - "Name": "Road Trippin'", - "AlbumId": 195, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Red Hot Chili Peppers", - "Milliseconds": 205635, - "Bytes": 6685831, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 128, - "Name": "Rush", - "Albums": [ - { - "AlbumId": 196, - "Title": "Retrospective I (1974-1980)", - "ArtistId": 128, - "Tracks": [ - { - "TrackId": 2406, - "Name": "The Spirit Of Radio", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 299154, - "Bytes": 9862012, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2407, - "Name": "The Trees", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 285126, - "Bytes": 9345473, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2408, - "Name": "Something For Nothing", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 240770, - "Bytes": 7898395, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2409, - "Name": "Freewill", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 324362, - "Bytes": 10694110, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2410, - "Name": "Xanadu", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 667428, - "Bytes": 21753168, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 74, - "CustomerId": 40, - "InvoiceDate": "2009-11-12T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 8.91, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2411, - "Name": "Bastille Day", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 280528, - "Bytes": 9264769, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2412, - "Name": "By-Tor And The Snow Dog", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 519888, - "Bytes": 17076397, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2413, - "Name": "Anthem", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 264515, - "Bytes": 8693343, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2414, - "Name": "Closer To The Heart", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 175412, - "Bytes": 5767005, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2415, - "Name": "2112 Overture", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 272718, - "Bytes": 8898066, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2416, - "Name": "The Temples Of Syrinx", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 133459, - "Bytes": 4360163, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2417, - "Name": "La Villa Strangiato", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 577488, - "Bytes": 19137855, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2418, - "Name": "Fly By Night", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 202318, - "Bytes": 6683061, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2419, - "Name": "Finding My Way", - "AlbumId": 196, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Milliseconds": 305528, - "Bytes": 9985701, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 129, - "Name": "Simply Red", - "Albums": null - }, - { - "ArtistId": 130, - "Name": "Skank", - "Albums": [ - { - "AlbumId": 199, - "Title": "Maquinarama", - "ArtistId": 130, - "Tracks": [ - { - "TrackId": 2449, - "Name": "�gua E Fogo", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chico Amaral/Edgard Scandurra/Samuel Rosa", - "Milliseconds": 278987, - "Bytes": 9272272, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2450, - "Name": "Tr�s Lados", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chico Amaral/Samuel Rosa", - "Milliseconds": 233665, - "Bytes": 7699609, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2451, - "Name": "Ela Desapareceu", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chico Amaral/Samuel Rosa", - "Milliseconds": 250122, - "Bytes": 8289200, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2452, - "Name": "Balada Do Amor Inabal�vel", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Fausto Fawcett/Samuel Rosa", - "Milliseconds": 240613, - "Bytes": 8025816, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2453, - "Name": "Can��o Noturna", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chico Amaral/Lelo Zanettik", - "Milliseconds": 238628, - "Bytes": 7874774, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2454, - "Name": "Mu�ulmano", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Le�o, Rodrigo F./Samuel Rosa", - "Milliseconds": 249600, - "Bytes": 8270613, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2455, - "Name": "Maquinarama", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chico Amaral/Samuel Rosa", - "Milliseconds": 245629, - "Bytes": 8213710, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2456, - "Name": "Rebeli�o", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chico Amaral/Samuel Rosa", - "Milliseconds": 298527, - "Bytes": 9817847, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2457, - "Name": "A �ltima Guerra", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Le�o, Rodrigo F./L� Borges/Samuel Rosa", - "Milliseconds": 314723, - "Bytes": 10480391, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2458, - "Name": "Fica", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chico Amaral/Samuel Rosa", - "Milliseconds": 272169, - "Bytes": 8980972, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2459, - "Name": "Ali", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Nando Reis/Samuel Rosa", - "Milliseconds": 306390, - "Bytes": 10110351, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2460, - "Name": "Preto Dami�o", - "AlbumId": 199, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chico Amaral/Samuel Rosa", - "Milliseconds": 264568, - "Bytes": 8697658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 200, - "Title": "O Samba Pocon�", - "ArtistId": 130, - "Tracks": [ - { - "TrackId": 2461, - "Name": "� Uma Partida De Futebol", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 1071, - "Bytes": 38747, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2462, - "Name": "Eu Disse A Ela", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 254223, - "Bytes": 8479463, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2463, - "Name": "Z� Trindade", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 247954, - "Bytes": 8331310, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2464, - "Name": "Garota Nacional", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 317492, - "Bytes": 10511239, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2465, - "Name": "T�o Seu", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 243748, - "Bytes": 8133126, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2466, - "Name": "Sem Terra", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 279353, - "Bytes": 9196411, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2467, - "Name": "Os Exilados", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 245551, - "Bytes": 8222095, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 390, - "CustomerId": 48, - "InvoiceDate": "2013-09-12T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 13.86, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2468, - "Name": "Um Dia Qualquer", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 292414, - "Bytes": 9805570, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2469, - "Name": "Los Pretos", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 239229, - "Bytes": 8025667, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2470, - "Name": "Sul Da Am�rica", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 254928, - "Bytes": 8484871, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2471, - "Name": "Pocon�", - "AlbumId": 200, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Samuel Rosa", - "Milliseconds": 318406, - "Bytes": 10771610, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 131, - "Name": "Smashing Pumpkins", - "Albums": [ - { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities", - "ArtistId": 131, - "Tracks": [ - { - "TrackId": 2472, - "Name": "Lucky 13", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 189387, - "Bytes": 6200617, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2473, - "Name": "Aeroplane Flies High", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 473391, - "Bytes": 15408329, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2474, - "Name": "Because You Are", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 226403, - "Bytes": 7405137, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2475, - "Name": "Slow Dawn", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 192339, - "Bytes": 6269057, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2476, - "Name": "Believe", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "James Iha", - "Milliseconds": 192940, - "Bytes": 6320652, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2477, - "Name": "My Mistake", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 240901, - "Bytes": 7843477, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2478, - "Name": "Marquis In Spades", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 192731, - "Bytes": 6304789, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2479, - "Name": "Here's To The Atom Bomb", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 266893, - "Bytes": 8763140, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2480, - "Name": "Sparrow", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 176822, - "Bytes": 5696989, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2481, - "Name": "Waiting", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 228336, - "Bytes": 7627641, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 391, - "CustomerId": 3, - "InvoiceDate": "2013-09-20T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 0.99, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2482, - "Name": "Saturnine", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 229877, - "Bytes": 7523502, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 392, - "CustomerId": 4, - "InvoiceDate": "2013-10-03T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 1.98, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2483, - "Name": "Rock On", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "David Cook", - "Milliseconds": 366471, - "Bytes": 12133825, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 392, - "CustomerId": 4, - "InvoiceDate": "2013-10-03T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 1.98, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2484, - "Name": "Set The Ray To Jerry", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 249364, - "Bytes": 8215184, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2485, - "Name": "Winterlong", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 299389, - "Bytes": 9670616, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 393, - "CustomerId": 6, - "InvoiceDate": "2013-10-03T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 1.98, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2486, - "Name": "Soot \u0026 Stars", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 399986, - "Bytes": 12866557, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2487, - "Name": "Blissed \u0026 Gone", - "AlbumId": 201, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 286302, - "Bytes": 9305998, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 393, - "CustomerId": 6, - "InvoiceDate": "2013-10-03T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 1.98, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits", - "ArtistId": 131, - "Tracks": [ - { - "TrackId": 2488, - "Name": "Siva", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 261172, - "Bytes": 8576622, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2489, - "Name": "Rhinocerous", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 353462, - "Bytes": 11526684, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 394, - "CustomerId": 8, - "InvoiceDate": "2013-10-04T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 3.96, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2490, - "Name": "Drown", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 270497, - "Bytes": 8883496, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 285, - "CustomerId": 9, - "InvoiceDate": "2012-06-04T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 13.86, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2491, - "Name": "Cherub Rock", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 299389, - "Bytes": 9786739, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 394, - "CustomerId": 8, - "InvoiceDate": "2013-10-04T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 3.96, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2492, - "Name": "Today", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 202213, - "Bytes": 6596933, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2493, - "Name": "Disarm", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 198556, - "Bytes": 6508249, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 394, - "CustomerId": 8, - "InvoiceDate": "2013-10-04T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 3.96, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2494, - "Name": "Landslide", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Stevie Nicks", - "Milliseconds": 190275, - "Bytes": 6187754, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2495, - "Name": "Bullet With Butterfly Wings", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 257306, - "Bytes": 8431747, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 394, - "CustomerId": 8, - "InvoiceDate": "2013-10-04T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 3.96, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2496, - "Name": "1979", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 263653, - "Bytes": 8728470, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2497, - "Name": "Zero", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 161123, - "Bytes": 5267176, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2498, - "Name": "Tonight, Tonight", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 255686, - "Bytes": 8351543, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2499, - "Name": "Eye", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 294530, - "Bytes": 9784201, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 395, - "CustomerId": 12, - "InvoiceDate": "2013-10-05T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 5.94, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2500, - "Name": "Ava Adore", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 261433, - "Bytes": 8590412, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2501, - "Name": "Perfect", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 203023, - "Bytes": 6734636, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2502, - "Name": "The Everlasting Gaze", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 242155, - "Bytes": 7844404, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2503, - "Name": "Stand Inside Your Love", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 253753, - "Bytes": 8270113, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 395, - "CustomerId": 12, - "InvoiceDate": "2013-10-05T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 5.94, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2504, - "Name": "Real Love", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 250697, - "Bytes": 8025896, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 286, - "CustomerId": 23, - "InvoiceDate": "2012-06-12T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 0.99, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2505, - "Name": "[Untitled]", - "AlbumId": 202, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Billy Corgan", - "Milliseconds": 231784, - "Bytes": 7689713, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 287, - "CustomerId": 24, - "InvoiceDate": "2012-06-25T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 1.98, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 132, - "Name": "Soundgarden", - "Albums": [ - { - "AlbumId": 203, - "Title": "A-Sides", - "ArtistId": 132, - "Tracks": [ - { - "TrackId": 2506, - "Name": "Nothing To Say", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell/Kim Thayil", - "Milliseconds": 238027, - "Bytes": 7744833, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 287, - "CustomerId": 24, - "InvoiceDate": "2012-06-25T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 1.98, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2507, - "Name": "Flower", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell/Kim Thayil", - "Milliseconds": 208822, - "Bytes": 6830732, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 395, - "CustomerId": 12, - "InvoiceDate": "2013-10-05T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 5.94, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2508, - "Name": "Loud Love", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 297456, - "Bytes": 9660953, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 288, - "CustomerId": 26, - "InvoiceDate": "2012-06-25T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 1.98, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2509, - "Name": "Hands All Over", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell/Kim Thayil", - "Milliseconds": 362475, - "Bytes": 11893108, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2510, - "Name": "Get On The Snake", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell/Kim Thayil", - "Milliseconds": 225123, - "Bytes": 7313744, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 288, - "CustomerId": 26, - "InvoiceDate": "2012-06-25T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 1.98, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2511, - "Name": "Jesus Christ Pose", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ben Shepherd/Chris Cornell/Kim Thayil/Matt Cameron", - "Milliseconds": 352966, - "Bytes": 11739886, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 395, - "CustomerId": 12, - "InvoiceDate": "2013-10-05T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 5.94, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2512, - "Name": "Outshined", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 312476, - "Bytes": 10274629, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": [ - { - "InvoiceId": 289, - "CustomerId": 28, - "InvoiceDate": "2012-06-26T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 3.96, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2513, - "Name": "Rusty Cage", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 267728, - "Bytes": 8779485, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 180, - "CustomerId": 29, - "InvoiceDate": "2011-02-25T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 13.86, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2514, - "Name": "Spoonman", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 248476, - "Bytes": 8289906, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 289, - "CustomerId": 28, - "InvoiceDate": "2012-06-26T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 3.96, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2515, - "Name": "The Day I Tried To Live", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 321175, - "Bytes": 10507137, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 395, - "CustomerId": 12, - "InvoiceDate": "2013-10-05T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 5.94, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2516, - "Name": "Black Hole Sun", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Soundgarden", - "Milliseconds": 320365, - "Bytes": 10425229, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": [ - { - "InvoiceId": 289, - "CustomerId": 28, - "InvoiceDate": "2012-06-26T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 3.96, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2517, - "Name": "Fell On Black Days", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 282331, - "Bytes": 9256082, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2518, - "Name": "Pretty Noose", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 253570, - "Bytes": 8317931, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 289, - "CustomerId": 28, - "InvoiceDate": "2012-06-26T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 3.96, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2519, - "Name": "Burden In My Hand", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 292153, - "Bytes": 9659911, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 395, - "CustomerId": 12, - "InvoiceDate": "2013-10-05T00:00:00Z", - "BillingAddress": "Pra�a Pio X, 119", - "BillingCity": "Rio de Janeiro", - "BillingState": "RJ", - "BillingCountry": "Brazil", - "BillingPostalCode": "20040-020", - "Total": 5.94, - "Customer": { - "CustomerId": 12, - "FirstName": "Roberto", - "LastName": "Almeida", - "Company": "Riotur", - "Address": "Pra�a Pio X, 119", - "City": "Rio de Janeiro", - "State": "RJ", - "Country": "Brazil", - "PostalCode": "20040-020", - "Phone": "+55 (21) 2271-7000", - "Fax": "+55 (21) 2271-7070", - "Email": "roberto.almeida@riotur.gov.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2520, - "Name": "Blow Up The Outside World", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 347898, - "Bytes": 11379527, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2521, - "Name": "Ty Cobb", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ben Shepherd/Chris Cornell", - "Milliseconds": 188786, - "Bytes": 6233136, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2522, - "Name": "Bleed Together", - "AlbumId": 203, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Chris Cornell", - "Milliseconds": 232202, - "Bytes": 7597074, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 290, - "CustomerId": 32, - "InvoiceDate": "2012-06-27T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 5.94, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 133, - "Name": "Stevie Ray Vaughan \u0026 Double Trouble", - "Albums": [ - { - "AlbumId": 205, - "Title": "In Step", - "ArtistId": 133, - "Tracks": [ - { - "TrackId": 2532, - "Name": "The House Is Rockin'", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "Milliseconds": 144352, - "Bytes": 4706253, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2533, - "Name": "Crossfire", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "B. Carter/C. Layton/R. Ellsworth/R. Wynans/T. Shannon", - "Milliseconds": 251219, - "Bytes": 8238033, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 183, - "CustomerId": 46, - "InvoiceDate": "2011-03-18T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 1.98, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2534, - "Name": "Tightrope", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "Milliseconds": 281155, - "Bytes": 9254906, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 290, - "CustomerId": 32, - "InvoiceDate": "2012-06-27T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 5.94, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2535, - "Name": "Let Me Love You Baby", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Willie Dixon", - "Milliseconds": 164127, - "Bytes": 5378455, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 184, - "CustomerId": 48, - "InvoiceDate": "2011-03-19T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 3.96, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2536, - "Name": "Leave My Girl Alone", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "B. Guy", - "Milliseconds": 256365, - "Bytes": 8438021, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 75, - "CustomerId": 49, - "InvoiceDate": "2009-11-17T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 13.86, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2537, - "Name": "Travis Walk", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Stevie Ray Vaughan", - "Milliseconds": 140826, - "Bytes": 4650979, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 184, - "CustomerId": 48, - "InvoiceDate": "2011-03-19T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 3.96, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2538, - "Name": "Wall Of Denial", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "Milliseconds": 336927, - "Bytes": 11085915, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 290, - "CustomerId": 32, - "InvoiceDate": "2012-06-27T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 5.94, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2539, - "Name": "Scratch-N-Sniff", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "Milliseconds": 163422, - "Bytes": 5353627, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 184, - "CustomerId": 48, - "InvoiceDate": "2011-03-19T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 3.96, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2540, - "Name": "Love Me Darlin'", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "C. Burnett", - "Milliseconds": 201586, - "Bytes": 6650869, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2541, - "Name": "Riviera Paradise", - "AlbumId": 205, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Stevie Ray Vaughan", - "Milliseconds": 528692, - "Bytes": 17232776, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 184, - "CustomerId": 48, - "InvoiceDate": "2011-03-19T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 3.96, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 134, - "Name": "Stone Temple Pilots", - "Albums": [ - { - "AlbumId": 206, - "Title": "Core", - "ArtistId": 134, - "Tracks": [ - { - "TrackId": 2542, - "Name": "Dead And Bloated", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "R. DeLeo/Weiland", - "Milliseconds": 310386, - "Bytes": 10170433, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 290, - "CustomerId": 32, - "InvoiceDate": "2012-06-27T00:00:00Z", - "BillingAddress": "696 Osborne Street", - "BillingCity": "Winnipeg", - "BillingState": "MB", - "BillingCountry": "Canada", - "BillingPostalCode": "R3L 2B9", - "Total": 5.94, - "Customer": { - "CustomerId": 32, - "FirstName": "Aaron", - "LastName": "Mitchell", - "Company": null, - "Address": "696 Osborne Street", - "City": "Winnipeg", - "State": "MB", - "Country": "Canada", - "PostalCode": "R3L 2B9", - "Phone": "+1 (204) 452-6452", - "Fax": null, - "Email": "aaronmitchell@yahoo.ca", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2543, - "Name": "Sex Type Thing", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D. DeLeo/Kretz/Weiland", - "Milliseconds": 218723, - "Bytes": 7102064, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2544, - "Name": "Wicked Garden", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D. DeLeo/R. DeLeo/Weiland", - "Milliseconds": 245368, - "Bytes": 7989505, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2545, - "Name": "No Memory", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dean Deleo", - "Milliseconds": 80613, - "Bytes": 2660859, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 185, - "CustomerId": 52, - "InvoiceDate": "2011-03-20T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 5.94, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2546, - "Name": "Sin", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "R. DeLeo/Weiland", - "Milliseconds": 364800, - "Bytes": 12018823, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2547, - "Name": "Naked Sunday", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D. DeLeo/Kretz/R. DeLeo/Weiland", - "Milliseconds": 229720, - "Bytes": 7444201, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2548, - "Name": "Creep", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "R. DeLeo/Weiland", - "Milliseconds": 333191, - "Bytes": 10894988, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2549, - "Name": "Piece Of Pie", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "R. DeLeo/Weiland", - "Milliseconds": 324623, - "Bytes": 10605231, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 185, - "CustomerId": 52, - "InvoiceDate": "2011-03-20T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 5.94, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2550, - "Name": "Plush", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "R. DeLeo/Weiland", - "Milliseconds": 314017, - "Bytes": 10229848, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": [ - { - "InvoiceId": 76, - "CustomerId": 4, - "InvoiceDate": "2009-11-25T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 0.99, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2551, - "Name": "Wet My Bed", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "R. DeLeo/Weiland", - "Milliseconds": 96914, - "Bytes": 3198627, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 77, - "CustomerId": 5, - "InvoiceDate": "2009-12-08T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 1.98, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2552, - "Name": "Crackerman", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Kretz/R. DeLeo/Weiland", - "Milliseconds": 194403, - "Bytes": 6317361, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 77, - "CustomerId": 5, - "InvoiceDate": "2009-12-08T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 1.98, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2553, - "Name": "Where The River Goes", - "AlbumId": 206, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "D. DeLeo/Kretz/Weiland", - "Milliseconds": 505991, - "Bytes": 16468904, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 185, - "CustomerId": 52, - "InvoiceDate": "2011-03-20T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 5.94, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 135, - "Name": "System Of A Down", - "Albums": [ - { - "AlbumId": 207, - "Title": "Mezmerize", - "ArtistId": 135, - "Tracks": [ - { - "TrackId": 2554, - "Name": "Soldier Side - Intro", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "Milliseconds": 63764, - "Bytes": 2056079, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 78, - "CustomerId": 7, - "InvoiceDate": "2009-12-08T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 1.98, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2555, - "Name": "B.Y.O.B.", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tankian, Serj", - "Milliseconds": 255555, - "Bytes": 8407935, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2556, - "Name": "Revenga", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tankian, Serj", - "Milliseconds": 228127, - "Bytes": 7503805, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 78, - "CustomerId": 7, - "InvoiceDate": "2009-12-08T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 1.98, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2557, - "Name": "Cigaro", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tankian, Serj", - "Milliseconds": 131787, - "Bytes": 4321705, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 185, - "CustomerId": 52, - "InvoiceDate": "2011-03-20T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 5.94, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2558, - "Name": "Radio/Video", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "Milliseconds": 249312, - "Bytes": 8224917, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 79, - "CustomerId": 9, - "InvoiceDate": "2009-12-09T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 3.96, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2559, - "Name": "This Cocaine Makes Me Feel Like I'm On This Song", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tankian, Serj", - "Milliseconds": 128339, - "Bytes": 4185193, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2560, - "Name": "Violent Pornography", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "Milliseconds": 211435, - "Bytes": 6985960, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 79, - "CustomerId": 9, - "InvoiceDate": "2009-12-09T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 3.96, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2561, - "Name": "Question!", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tankian, Serj", - "Milliseconds": 200698, - "Bytes": 6616398, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 185, - "CustomerId": 52, - "InvoiceDate": "2011-03-20T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 5.94, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2562, - "Name": "Sad Statue", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tankian, Serj", - "Milliseconds": 205897, - "Bytes": 6733449, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 79, - "CustomerId": 9, - "InvoiceDate": "2009-12-09T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 3.96, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2563, - "Name": "Old School Hollywood", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "Milliseconds": 176953, - "Bytes": 5830258, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2564, - "Name": "Lost in Hollywood", - "AlbumId": 207, - "MediaTypeId": 1, - "GenreId": 3, - "Composer": "Tankian, Serj", - "Milliseconds": 320783, - "Bytes": 10535158, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 3, - "Name": "Metal" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 79, - "CustomerId": 9, - "InvoiceDate": "2009-12-09T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 3.96, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 136, - "Name": "Terry Bozzio, Tony Levin \u0026 Steve Stevens", - "Albums": [ - { - "AlbumId": 208, - "Title": "[1997] Black Light Syndrome", - "ArtistId": 136, - "Tracks": [ - { - "TrackId": 2565, - "Name": "The Sun Road", - "AlbumId": 208, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Milliseconds": 880640, - "Bytes": 29008407, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 185, - "CustomerId": 52, - "InvoiceDate": "2011-03-20T00:00:00Z", - "BillingAddress": "202 Hoxton Street", - "BillingCity": "London", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "N1 5LH", - "Total": 5.94, - "Customer": { - "CustomerId": 52, - "FirstName": "Emma", - "LastName": "Jones", - "Company": null, - "Address": "202 Hoxton Street", - "City": "London", - "State": null, - "Country": "United Kingdom", - "PostalCode": "N1 5LH", - "Phone": "+44 020 7707 0707", - "Fax": null, - "Email": "emma_jones@hotmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2566, - "Name": "Dark Corners", - "AlbumId": 208, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Milliseconds": 513541, - "Bytes": 16839223, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2567, - "Name": "Duende", - "AlbumId": 208, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Milliseconds": 447582, - "Bytes": 14956771, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2568, - "Name": "Black Light Syndrome", - "AlbumId": 208, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Milliseconds": 526471, - "Bytes": 17300835, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 80, - "CustomerId": 13, - "InvoiceDate": "2009-12-10T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 5.94, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2569, - "Name": "Falling in Circles", - "AlbumId": 208, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Milliseconds": 549093, - "Bytes": 18263248, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2570, - "Name": "Book of Hours", - "AlbumId": 208, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Milliseconds": 583366, - "Bytes": 19464726, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2571, - "Name": "Chaos-Control", - "AlbumId": 208, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Milliseconds": 529841, - "Bytes": 17455568, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 137, - "Name": "The Black Crowes", - "Albums": [ - { - "AlbumId": 209, - "Title": "Live [Disc 1]", - "ArtistId": 137, - "Tracks": [ - { - "TrackId": 2572, - "Name": "Midnight From The Inside Out", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 286981, - "Bytes": 9442157, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 80, - "CustomerId": 13, - "InvoiceDate": "2009-12-10T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 5.94, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2573, - "Name": "Sting Me", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 268094, - "Bytes": 8813561, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 396, - "CustomerId": 18, - "InvoiceDate": "2013-10-08T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 8.91, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2574, - "Name": "Thick \u0026 Thin", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 222720, - "Bytes": 7284377, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2575, - "Name": "Greasy Grass River", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 218749, - "Bytes": 7157045, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2576, - "Name": "Sometimes Salvation", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 389146, - "Bytes": 12749424, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 80, - "CustomerId": 13, - "InvoiceDate": "2009-12-10T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 5.94, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2577, - "Name": "Cursed Diamonds", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 368300, - "Bytes": 12047978, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2578, - "Name": "Miracle To Me", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 372636, - "Bytes": 12222116, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2579, - "Name": "Wiser Time", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 459990, - "Bytes": 15161907, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2580, - "Name": "Girl From A Pawnshop", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 404688, - "Bytes": 13250848, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 80, - "CustomerId": 13, - "InvoiceDate": "2009-12-10T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 5.94, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2581, - "Name": "Cosmic Fiend", - "AlbumId": 209, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 308401, - "Bytes": 10115556, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 210, - "Title": "Live [Disc 2]", - "ArtistId": 137, - "Tracks": [ - { - "TrackId": 2582, - "Name": "Black Moon Creeping", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 359314, - "Bytes": 11740886, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2583, - "Name": "High Head Blues", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 371879, - "Bytes": 12227998, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2584, - "Name": "Title Song", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 505521, - "Bytes": 16501316, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 80, - "CustomerId": 13, - "InvoiceDate": "2009-12-10T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 5.94, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2585, - "Name": "She Talks To Angels", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 361978, - "Bytes": 11837342, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2586, - "Name": "Twice As Hard", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 275565, - "Bytes": 9008067, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2587, - "Name": "Lickin'", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 314409, - "Bytes": 10331216, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2588, - "Name": "Soul Singing", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 233639, - "Bytes": 7672489, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 80, - "CustomerId": 13, - "InvoiceDate": "2009-12-10T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 5.94, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2589, - "Name": "Hard To Handle", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "A.Isbell/A.Jones/O.Redding", - "Milliseconds": 206994, - "Bytes": 6786304, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2590, - "Name": "Remedy", - "AlbumId": 210, - "MediaTypeId": 1, - "GenreId": 6, - "Composer": "Chris Robinson/Rich Robinson", - "Milliseconds": 337084, - "Bytes": 11049098, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 6, - "Name": "Blues" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 138, - "Name": "The Clash", - "Albums": [ - { - "AlbumId": 211, - "Title": "The Singles", - "ArtistId": 138, - "Tracks": [ - { - "TrackId": 2591, - "Name": "White Riot", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 118726, - "Bytes": 3922819, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2592, - "Name": "Remote Control", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 180297, - "Bytes": 5949647, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2593, - "Name": "Complete Control", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 192653, - "Bytes": 6272081, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2594, - "Name": "Clash City Rockers", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 227500, - "Bytes": 7555054, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2595, - "Name": "(White Man) In Hammersmith Palais", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 240640, - "Bytes": 7883532, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2596, - "Name": "Tommy Gun", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 195526, - "Bytes": 6399872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 291, - "CustomerId": 38, - "InvoiceDate": "2012-06-30T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 8.91, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2597, - "Name": "English Civil War", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Mick Jones/Traditional arr. Joe Strummer", - "Milliseconds": 156708, - "Bytes": 5111226, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2598, - "Name": "I Fought The Law", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Sonny Curtis", - "Milliseconds": 159764, - "Bytes": 5245258, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2599, - "Name": "London Calling", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 199706, - "Bytes": 6569007, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2600, - "Name": "Train In Vain", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 189675, - "Bytes": 6329877, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2601, - "Name": "Bankrobber", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Joe Strummer/Mick Jones", - "Milliseconds": 272431, - "Bytes": 9067323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2602, - "Name": "The Call Up", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Clash", - "Milliseconds": 324336, - "Bytes": 10746937, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2603, - "Name": "Hitsville UK", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Clash", - "Milliseconds": 261433, - "Bytes": 8606887, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2604, - "Name": "The Magnificent Seven", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Clash", - "Milliseconds": 268486, - "Bytes": 8889821, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2605, - "Name": "This Is Radio Clash", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Clash", - "Milliseconds": 249756, - "Bytes": 8366573, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2606, - "Name": "Know Your Rights", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Clash", - "Milliseconds": 217678, - "Bytes": 7195726, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2607, - "Name": "Rock The Casbah", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Clash", - "Milliseconds": 222145, - "Bytes": 7361500, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2608, - "Name": "Should I Stay Or Should I Go", - "AlbumId": 211, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Clash", - "Milliseconds": 187219, - "Bytes": 6188688, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 139, - "Name": "The Cult", - "Albums": [ - { - "AlbumId": 212, - "Title": "Beyond Good And Evil", - "ArtistId": 139, - "Tracks": [ - { - "TrackId": 2609, - "Name": "War (The Process)", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 252630, - "Bytes": 8254842, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2610, - "Name": "The Saint", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 216215, - "Bytes": 7061584, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2611, - "Name": "Rise", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 219088, - "Bytes": 7106195, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2612, - "Name": "Take The Power", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 235755, - "Bytes": 7650012, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2613, - "Name": "Breathe", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury/Marti Frederiksen/Mick Jones", - "Milliseconds": 299781, - "Bytes": 9742361, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2614, - "Name": "Nico", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 289488, - "Bytes": 9412323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2615, - "Name": "American Gothic", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 236878, - "Bytes": 7739840, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2616, - "Name": "Ashes And Ghosts", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Bob Rock/Ian Astbury", - "Milliseconds": 300591, - "Bytes": 9787692, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2617, - "Name": "Shape The Sky", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 209789, - "Bytes": 6885647, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2618, - "Name": "Speed Of Light", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Bob Rock/Ian Astbury", - "Milliseconds": 262817, - "Bytes": 8563352, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2619, - "Name": "True Believers", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 308009, - "Bytes": 9981359, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 186, - "CustomerId": 58, - "InvoiceDate": "2011-03-23T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 8.91, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2620, - "Name": "My Bridges Burn", - "AlbumId": 212, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Billy Duffy/Ian Astbury", - "Milliseconds": 231862, - "Bytes": 7571370, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers \u0026 Sinners) [UK]", - "ArtistId": 139, - "Tracks": [ - { - "TrackId": 2621, - "Name": "She Sells Sanctuary", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 253727, - "Bytes": 8368634, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2622, - "Name": "Fire Woman", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 312790, - "Bytes": 10196995, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2623, - "Name": "Lil' Evil", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 165825, - "Bytes": 5419655, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2624, - "Name": "Spirit Walker", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 230060, - "Bytes": 7555897, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2625, - "Name": "The Witch", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 258768, - "Bytes": 8725403, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2626, - "Name": "Revolution", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 256026, - "Bytes": 8371254, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2627, - "Name": "Wild Hearted Son", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 266893, - "Bytes": 8670550, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2628, - "Name": "Love Removal Machine", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 257619, - "Bytes": 8412167, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2629, - "Name": "Rain", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 236669, - "Bytes": 7788461, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2630, - "Name": "Edie (Ciao Baby)", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 241632, - "Bytes": 7846177, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2631, - "Name": "Heart Of Soul", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 274207, - "Bytes": 8967257, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2632, - "Name": "Love", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 326739, - "Bytes": 10729824, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2633, - "Name": "Wild Flower", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 215536, - "Bytes": 7084321, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2634, - "Name": "Go West", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 238158, - "Bytes": 7777749, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2635, - "Name": "Resurrection Joe", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 255451, - "Bytes": 8532840, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2636, - "Name": "Sun King", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 368431, - "Bytes": 12010865, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2637, - "Name": "Sweet Soul Sister", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 212009, - "Bytes": 6889883, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2638, - "Name": "Earth Mofo", - "AlbumId": 213, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": null, - "Milliseconds": 282200, - "Bytes": 9204581, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 140, - "Name": "The Doors", - "Albums": [ - { - "AlbumId": 214, - "Title": "The Doors", - "ArtistId": 140, - "Tracks": [ - { - "TrackId": 2639, - "Name": "Break on Through", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 149342, - "Bytes": 4943144, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2640, - "Name": "Soul Kitchen", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 215066, - "Bytes": 7040865, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2641, - "Name": "The Crystal Ship", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 154853, - "Bytes": 5052658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2642, - "Name": "Twentienth Century Fox", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 153913, - "Bytes": 5069211, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 81, - "CustomerId": 19, - "InvoiceDate": "2009-12-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 8.91, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2643, - "Name": "Alabama Song", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Weill-Brecht", - "Milliseconds": 200097, - "Bytes": 6563411, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2644, - "Name": "Light My Fire", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 428329, - "Bytes": 13963351, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2645, - "Name": "Back Door Man", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Willie Dixon, C. Burnett", - "Milliseconds": 214360, - "Bytes": 7035636, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2646, - "Name": "I Looked At You", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 142080, - "Bytes": 4663988, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2647, - "Name": "End Of The Night", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 172695, - "Bytes": 5589732, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2648, - "Name": "Take It As It Comes", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 137168, - "Bytes": 4512656, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2649, - "Name": "The End", - "AlbumId": 214, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Milliseconds": 701831, - "Bytes": 22927336, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 141, - "Name": "The Police", - "Albums": [ - { - "AlbumId": 215, - "Title": "The Police Greatest Hits", - "ArtistId": 141, - "Tracks": [ - { - "TrackId": 2650, - "Name": "Roxanne", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 192992, - "Bytes": 6330159, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2651, - "Name": "Can't Stand Losing You", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 181159, - "Bytes": 5971983, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2652, - "Name": "Message in a Bottle", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 291474, - "Bytes": 9647829, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2653, - "Name": "Walking on the Moon", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 302080, - "Bytes": 10019861, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2654, - "Name": "Don't Stand so Close to Me", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 241031, - "Bytes": 7956658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2655, - "Name": "De Do Do Do, De Da Da Da", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 247196, - "Bytes": 8227075, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2656, - "Name": "Every Little Thing She Does is Magic", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 261120, - "Bytes": 8646853, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2657, - "Name": "Invisible Sun", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 225593, - "Bytes": 7304320, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2658, - "Name": "Spirit's in the Material World", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 181133, - "Bytes": 5986622, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2659, - "Name": "Every Breath You Take", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 254615, - "Bytes": 8364520, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2660, - "Name": "King Of Pain", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 300512, - "Bytes": 9880303, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2661, - "Name": "Wrapped Around Your Finger", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 315454, - "Bytes": 10361490, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2662, - "Name": "Don't Stand So Close to Me '86", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 293590, - "Bytes": 9636683, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2663, - "Name": "Message in a Bottle (new classic rock mix)", - "AlbumId": 215, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "G M Sumner", - "Milliseconds": 290951, - "Bytes": 9640349, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 142, - "Name": "The Rolling Stones", - "Albums": [ - { - "AlbumId": 216, - "Title": "Hot Rocks, 1964-1971 (Disc 1)", - "ArtistId": 142, - "Tracks": [ - { - "TrackId": 2664, - "Name": "Time Is On My Side", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jerry Ragavoy", - "Milliseconds": 179983, - "Bytes": 5855836, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2665, - "Name": "Heart Of Stone", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 164493, - "Bytes": 5329538, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2666, - "Name": "Play With Fire", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Nanker Phelge", - "Milliseconds": 132022, - "Bytes": 4265297, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2667, - "Name": "Satisfaction", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 226612, - "Bytes": 7398766, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2668, - "Name": "As Tears Go By", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards/Oldham", - "Milliseconds": 164284, - "Bytes": 5357350, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2669, - "Name": "Get Off Of My Cloud", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 176013, - "Bytes": 5719514, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2670, - "Name": "Mother's Little Helper", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 167549, - "Bytes": 5422434, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2671, - "Name": "19th Nervous Breakdown", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 237923, - "Bytes": 7742984, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2672, - "Name": "Paint It Black", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 226063, - "Bytes": 7442888, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2673, - "Name": "Under My Thumb", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 221387, - "Bytes": 7371799, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2674, - "Name": "Ruby Tuesday", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 197459, - "Bytes": 6433467, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2675, - "Name": "Let's Spend The Night Together", - "AlbumId": 216, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 217495, - "Bytes": 7137048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 217, - "Title": "No Security", - "ArtistId": 142, - "Tracks": [ - { - "TrackId": 2676, - "Name": "Intro", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 49737, - "Bytes": 1618591, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2677, - "Name": "You Got Me Rocking", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 205766, - "Bytes": 6734385, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2678, - "Name": "Gimmie Shelters", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 382119, - "Bytes": 12528764, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2679, - "Name": "Flip The Switch", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 252421, - "Bytes": 8336591, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2680, - "Name": "Memory Motel", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 365844, - "Bytes": 11982431, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2681, - "Name": "Corinna", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jesse Ed Davis III/Taj Mahal", - "Milliseconds": 257488, - "Bytes": 8449471, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2682, - "Name": "Saint Of Me", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 325694, - "Bytes": 10725160, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2683, - "Name": "Wainting On A Friend", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 302497, - "Bytes": 9978046, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2684, - "Name": "Sister Morphine", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Faithfull/Jagger/Richards", - "Milliseconds": 376215, - "Bytes": 12345289, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2685, - "Name": "Live With Me", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 234893, - "Bytes": 7709006, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2686, - "Name": "Respectable", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 215693, - "Bytes": 7099669, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2687, - "Name": "Thief In The Night", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "De Beauport/Jagger/Richards", - "Milliseconds": 337266, - "Bytes": 10952756, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2688, - "Name": "The Last Time", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 287294, - "Bytes": 9498758, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2689, - "Name": "Out Of Control", - "AlbumId": 217, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 479242, - "Bytes": 15749289, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 218, - "Title": "Voodoo Lounge", - "ArtistId": 142, - "Tracks": [ - { - "TrackId": 2690, - "Name": "Love Is Strong", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 230896, - "Bytes": 7639774, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2691, - "Name": "You Got Me Rocking", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 215928, - "Bytes": 7162159, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2692, - "Name": "Sparks Will Fly", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 196466, - "Bytes": 6492847, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2693, - "Name": "The Worst", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 144613, - "Bytes": 4750094, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2694, - "Name": "New Faces", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 172146, - "Bytes": 5689122, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2695, - "Name": "Moon Is Up", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 222119, - "Bytes": 7366316, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2696, - "Name": "Out Of Tears", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 327418, - "Bytes": 10677236, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2697, - "Name": "I Go Wild", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 264019, - "Bytes": 8630833, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2698, - "Name": "Brand New Car", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 256052, - "Bytes": 8459344, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2699, - "Name": "Sweethearts Together", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 285492, - "Bytes": 9550459, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 397, - "CustomerId": 27, - "InvoiceDate": "2013-10-13T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 13.86, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2700, - "Name": "Suck On The Jugular", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 268225, - "Bytes": 8920566, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2701, - "Name": "Blinded By Rainbows", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 273946, - "Bytes": 8971343, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2702, - "Name": "Baby Break It Down", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 249417, - "Bytes": 8197309, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2703, - "Name": "Thru And Thru", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 375092, - "Bytes": 12175406, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2704, - "Name": "Mean Disposition", - "AlbumId": 218, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jagger/Richards", - "Milliseconds": 249155, - "Bytes": 8273602, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 143, - "Name": "The Tea Party", - "Albums": [ - { - "AlbumId": 219, - "Title": "Tangents", - "ArtistId": 143, - "Tracks": [ - { - "TrackId": 2705, - "Name": "Walking Wounded", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 277968, - "Bytes": 9184345, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2706, - "Name": "Temptation", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 205087, - "Bytes": 6711943, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2707, - "Name": "The Messenger", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Daniel Lanois", - "Milliseconds": 212062, - "Bytes": 6975437, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2708, - "Name": "Psychopomp", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 315559, - "Bytes": 10295199, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2709, - "Name": "Sister Awake", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 343875, - "Bytes": 11299407, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2710, - "Name": "The Bazaar", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 222458, - "Bytes": 7245691, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2711, - "Name": "Save Me (Remix)", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 396303, - "Bytes": 13053839, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2712, - "Name": "Fire In The Head", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 306337, - "Bytes": 10005675, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2713, - "Name": "Release", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 244114, - "Bytes": 8014606, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 398, - "CustomerId": 41, - "InvoiceDate": "2013-10-21T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 0.99, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2714, - "Name": "Heaven Coming Down", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 241867, - "Bytes": 7846459, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 399, - "CustomerId": 42, - "InvoiceDate": "2013-11-03T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 1.98, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2715, - "Name": "The River (Remix)", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 343170, - "Bytes": 11193268, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 399, - "CustomerId": 42, - "InvoiceDate": "2013-11-03T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 1.98, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2716, - "Name": "Babylon", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 169795, - "Bytes": 5568808, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2717, - "Name": "Waiting On A Sign", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 261903, - "Bytes": 8558590, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 400, - "CustomerId": 44, - "InvoiceDate": "2013-11-03T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 1.98, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2718, - "Name": "Life Line", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 277786, - "Bytes": 9082773, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2719, - "Name": "Paint It Black", - "AlbumId": 219, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Keith Richards/Mick Jagger", - "Milliseconds": 214752, - "Bytes": 7101572, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 400, - "CustomerId": 44, - "InvoiceDate": "2013-11-03T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 1.98, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 220, - "Title": "Transmission", - "ArtistId": 143, - "Tracks": [ - { - "TrackId": 2720, - "Name": "Temptation", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 205244, - "Bytes": 6719465, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2721, - "Name": "Army Ants", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 215405, - "Bytes": 7075838, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 401, - "CustomerId": 46, - "InvoiceDate": "2013-11-04T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2722, - "Name": "Psychopomp", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 317231, - "Bytes": 10351778, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 292, - "CustomerId": 47, - "InvoiceDate": "2012-07-05T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 13.86, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2723, - "Name": "Gyroscope", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 177711, - "Bytes": 5810323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 401, - "CustomerId": 46, - "InvoiceDate": "2013-11-04T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2724, - "Name": "Alarum", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 298187, - "Bytes": 9712545, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2725, - "Name": "Release", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 266292, - "Bytes": 8725824, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 401, - "CustomerId": 46, - "InvoiceDate": "2013-11-04T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2726, - "Name": "Transmission", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 317257, - "Bytes": 10351152, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2727, - "Name": "Babylon", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 292466, - "Bytes": 9601786, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 401, - "CustomerId": 46, - "InvoiceDate": "2013-11-04T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 3.96, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2728, - "Name": "Pulse", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 250253, - "Bytes": 8183872, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2729, - "Name": "Emerald", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 289750, - "Bytes": 9543789, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2730, - "Name": "Aftermath", - "AlbumId": 220, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "The Tea Party", - "Milliseconds": 343745, - "Bytes": 11085607, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 144, - "Name": "The Who", - "Albums": [ - { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who", - "ArtistId": 144, - "Tracks": [ - { - "TrackId": 2731, - "Name": "I Can't Explain", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 125152, - "Bytes": 4082896, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 402, - "CustomerId": 50, - "InvoiceDate": "2013-11-05T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 5.94, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2732, - "Name": "Anyway, Anyhow, Anywhere", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend, Roger Daltrey", - "Milliseconds": 161253, - "Bytes": 5234173, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2733, - "Name": "My Generation", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Entwistle/Pete Townshend", - "Milliseconds": 197825, - "Bytes": 6446634, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2734, - "Name": "Substitute", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 228022, - "Bytes": 7409995, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2735, - "Name": "I'm A Boy", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 157126, - "Bytes": 5120605, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 402, - "CustomerId": 50, - "InvoiceDate": "2013-11-05T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 5.94, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2736, - "Name": "Boris The Spider", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Entwistle", - "Milliseconds": 149472, - "Bytes": 4835202, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 293, - "CustomerId": 2, - "InvoiceDate": "2012-07-13T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 0.99, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2737, - "Name": "Happy Jack", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 132310, - "Bytes": 4353063, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 294, - "CustomerId": 3, - "InvoiceDate": "2012-07-26T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 1.98, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2738, - "Name": "Pictures Of Lily", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 164414, - "Bytes": 5329751, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 294, - "CustomerId": 3, - "InvoiceDate": "2012-07-26T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 1.98, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2739, - "Name": "I Can See For Miles", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 262791, - "Bytes": 8604989, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 402, - "CustomerId": 50, - "InvoiceDate": "2013-11-05T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 5.94, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2740, - "Name": "Magic Bus", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 197224, - "Bytes": 6452700, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 295, - "CustomerId": 5, - "InvoiceDate": "2012-07-26T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 1.98, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2741, - "Name": "Pinball Wizard", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Entwistle/Pete Townshend", - "Milliseconds": 181890, - "Bytes": 6055580, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2742, - "Name": "The Seeker", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 204643, - "Bytes": 6736866, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 295, - "CustomerId": 5, - "InvoiceDate": "2012-07-26T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 1.98, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2743, - "Name": "Baba O'Riley", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Entwistle/Pete Townshend", - "Milliseconds": 309472, - "Bytes": 10141660, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 402, - "CustomerId": 50, - "InvoiceDate": "2013-11-05T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 5.94, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2744, - "Name": "Won't Get Fooled Again (Full Length Version)", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Entwistle/Pete Townshend", - "Milliseconds": 513750, - "Bytes": 16855521, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 296, - "CustomerId": 7, - "InvoiceDate": "2012-07-27T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 3.96, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2745, - "Name": "Let's See Action", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 243513, - "Bytes": 8078418, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 187, - "CustomerId": 8, - "InvoiceDate": "2011-03-28T00:00:00Z", - "BillingAddress": "Gr�trystraat 63", - "BillingCity": "Brussels", - "BillingState": null, - "BillingCountry": "Belgium", - "BillingPostalCode": "1000", - "Total": 13.86, - "Customer": { - "CustomerId": 8, - "FirstName": "Daan", - "LastName": "Peeters", - "Company": null, - "Address": "Gr�trystraat 63", - "City": "Brussels", - "State": null, - "Country": "Belgium", - "PostalCode": "1000", - "Phone": "+32 02 219 03 03", - "Fax": null, - "Email": "daan_peeters@apple.be", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2746, - "Name": "5.15", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 289619, - "Bytes": 9458549, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 296, - "CustomerId": 7, - "InvoiceDate": "2012-07-27T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 3.96, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2747, - "Name": "Join Together", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 262556, - "Bytes": 8602485, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 402, - "CustomerId": 50, - "InvoiceDate": "2013-11-05T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 5.94, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2748, - "Name": "Squeeze Box", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 161280, - "Bytes": 5256508, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 296, - "CustomerId": 7, - "InvoiceDate": "2012-07-27T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 3.96, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2749, - "Name": "Who Are You (Single Edit Version)", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Entwistle/Pete Townshend", - "Milliseconds": 299232, - "Bytes": 9900469, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2750, - "Name": "You Better You Bet", - "AlbumId": 221, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Pete Townshend", - "Milliseconds": 338520, - "Bytes": 11160877, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 296, - "CustomerId": 7, - "InvoiceDate": "2012-07-27T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 3.96, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 145, - "Name": "Tim Maia", - "Albums": [ - { - "AlbumId": 222, - "Title": "Serie Sem Limite (Disc 1)", - "ArtistId": 145, - "Tracks": [ - { - "TrackId": 2751, - "Name": "Primavera", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Genival Cassiano/Silvio Rochael", - "Milliseconds": 126615, - "Bytes": 4152604, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 402, - "CustomerId": 50, - "InvoiceDate": "2013-11-05T00:00:00Z", - "BillingAddress": "C/ San Bernardo 85", - "BillingCity": "Madrid", - "BillingState": null, - "BillingCountry": "Spain", - "BillingPostalCode": "28015", - "Total": 5.94, - "Customer": { - "CustomerId": 50, - "FirstName": "Enrique", - "LastName": "Mu�oz", - "Company": null, - "Address": "C/ San Bernardo 85", - "City": "Madrid", - "State": null, - "Country": "Spain", - "PostalCode": "28015", - "Phone": "+34 914 454 454", - "Fax": null, - "Email": "enrique_munoz@yahoo.es", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2752, - "Name": "Chocolate", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 194690, - "Bytes": 6411587, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2753, - "Name": "Azul Da Cor Do Mar", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 197955, - "Bytes": 6475007, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2754, - "Name": "O Descobridor Dos Sete Mares", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Gilson Mendon�a/Michel", - "Milliseconds": 262974, - "Bytes": 8749583, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 297, - "CustomerId": 11, - "InvoiceDate": "2012-07-28T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 5.94, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2755, - "Name": "At� Que Enfim Encontrei Voc�", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 105064, - "Bytes": 3477751, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2756, - "Name": "Coron� Antonio Bento", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Do Vale, Jo�o/Luiz Wanderley", - "Milliseconds": 131317, - "Bytes": 4340326, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2757, - "Name": "New Love", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 237897, - "Bytes": 7786824, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2758, - "Name": "N�o Vou Ficar", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 172068, - "Bytes": 5642919, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 297, - "CustomerId": 11, - "InvoiceDate": "2012-07-28T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 5.94, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2759, - "Name": "M�sica No Ar", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 158511, - "Bytes": 5184891, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 188, - "CustomerId": 22, - "InvoiceDate": "2011-04-05T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 0.99, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2760, - "Name": "Salve Nossa Senhora", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Carlos Imperial/Edardo Ara�jo", - "Milliseconds": 115461, - "Bytes": 3827629, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 189, - "CustomerId": 23, - "InvoiceDate": "2011-04-18T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 1.98, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2761, - "Name": "Voc� Fugiu", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Genival Cassiano", - "Milliseconds": 238367, - "Bytes": 7971147, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 189, - "CustomerId": 23, - "InvoiceDate": "2011-04-18T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 1.98, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2762, - "Name": "Cristina N� 2", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Carlos Imperial/Tim Maia", - "Milliseconds": 90148, - "Bytes": 2978589, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 297, - "CustomerId": 11, - "InvoiceDate": "2012-07-28T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 5.94, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2763, - "Name": "Compadre", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 171389, - "Bytes": 5631446, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 190, - "CustomerId": 25, - "InvoiceDate": "2011-04-18T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 1.98, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2764, - "Name": "Over Again", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 200489, - "Bytes": 6612634, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2765, - "Name": "R�u Confesso", - "AlbumId": 222, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Tim Maia", - "Milliseconds": 217391, - "Bytes": 7189874, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 190, - "CustomerId": 25, - "InvoiceDate": "2011-04-18T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 1.98, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 223, - "Title": "Serie Sem Limite (Disc 2)", - "ArtistId": 145, - "Tracks": [ - { - "TrackId": 2766, - "Name": "O Que Me Importa", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 153155, - "Bytes": 4977852, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 297, - "CustomerId": 11, - "InvoiceDate": "2012-07-28T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 5.94, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2767, - "Name": "Gostava Tanto De Voc�", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 253805, - "Bytes": 8380077, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 191, - "CustomerId": 27, - "InvoiceDate": "2011-04-19T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 3.96, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2768, - "Name": "Voc�", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 242599, - "Bytes": 7911702, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 82, - "CustomerId": 28, - "InvoiceDate": "2009-12-18T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 13.86, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2769, - "Name": "N�o Quero Dinheiro", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 152607, - "Bytes": 5031797, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 11, - "Name": "Brazilian Music" - } - ], - "Invoices": [ - { - "InvoiceId": 191, - "CustomerId": 27, - "InvoiceDate": "2011-04-19T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 3.96, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2770, - "Name": "Eu Amo Voc�", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 242782, - "Bytes": 7914628, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 297, - "CustomerId": 11, - "InvoiceDate": "2012-07-28T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 5.94, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2771, - "Name": "A Festa Do Santo Reis", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 159791, - "Bytes": 5204995, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 191, - "CustomerId": 27, - "InvoiceDate": "2011-04-19T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 3.96, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2772, - "Name": "I Don't Know What To Do With Myself", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 221387, - "Bytes": 7251478, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2773, - "Name": "Padre C�cero", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 139598, - "Bytes": 4581685, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 191, - "CustomerId": 27, - "InvoiceDate": "2011-04-19T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 3.96, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2774, - "Name": "Nosso Adeus", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 206471, - "Bytes": 6793270, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 297, - "CustomerId": 11, - "InvoiceDate": "2012-07-28T00:00:00Z", - "BillingAddress": "Av. Paulista, 2022", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01310-200", - "Total": 5.94, - "Customer": { - "CustomerId": 11, - "FirstName": "Alexandre", - "LastName": "Rocha", - "Company": "Banco do Brasil S.A.", - "Address": "Av. Paulista, 2022", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01310-200", - "Phone": "+55 (11) 3055-3278", - "Fax": "+55 (11) 3055-8131", - "Email": "alero@uol.com.br", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2775, - "Name": "Can�rio Do Reino", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 139337, - "Bytes": 4552858, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2776, - "Name": "Preciso Ser Amado", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 174001, - "Bytes": 5618895, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2777, - "Name": "Balan�o", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 209737, - "Bytes": 6890327, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 192, - "CustomerId": 31, - "InvoiceDate": "2011-04-20T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 5.94, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2778, - "Name": "Preciso Aprender A Ser S�", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 162220, - "Bytes": 5213894, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2779, - "Name": "Esta � A Can��o", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 184450, - "Bytes": 6069933, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2780, - "Name": "Formigueiro", - "AlbumId": 223, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": null, - "Milliseconds": 252943, - "Bytes": 8455132, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 146, - "Name": "Tit�s", - "Albums": [ - { - "AlbumId": 224, - "Title": "Ac�stico", - "ArtistId": 146, - "Tracks": [ - { - "TrackId": 2781, - "Name": "Comida", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 322612, - "Bytes": 10786578, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 192, - "CustomerId": 31, - "InvoiceDate": "2011-04-20T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 5.94, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2782, - "Name": "Go Back", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 230504, - "Bytes": 7668899, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 83, - "CustomerId": 42, - "InvoiceDate": "2009-12-26T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 0.99, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2783, - "Name": "Pr� Dizer Adeus", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 222484, - "Bytes": 7382048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 84, - "CustomerId": 43, - "InvoiceDate": "2010-01-08T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 1.98, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2784, - "Name": "Fam�lia", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 218331, - "Bytes": 7267458, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 84, - "CustomerId": 43, - "InvoiceDate": "2010-01-08T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 1.98, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2785, - "Name": "Os Cegos Do Castelo", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 296829, - "Bytes": 9868187, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 192, - "CustomerId": 31, - "InvoiceDate": "2011-04-20T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 5.94, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2786, - "Name": "O Pulso", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 199131, - "Bytes": 6566998, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 85, - "CustomerId": 45, - "InvoiceDate": "2010-01-08T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 1.98, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2787, - "Name": "Marvin", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 264359, - "Bytes": 8741444, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2788, - "Name": "Nem 5 Minutos Guardados", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 245995, - "Bytes": 8143797, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 85, - "CustomerId": 45, - "InvoiceDate": "2010-01-08T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 1.98, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2789, - "Name": "Flores", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 215510, - "Bytes": 7148017, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 192, - "CustomerId": 31, - "InvoiceDate": "2011-04-20T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 5.94, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2790, - "Name": "Palavras", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 158458, - "Bytes": 5285715, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 86, - "CustomerId": 47, - "InvoiceDate": "2010-01-09T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 3.96, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2791, - "Name": "Heredit�rio", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 151693, - "Bytes": 5020547, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2792, - "Name": "A Melhor Forma", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 191503, - "Bytes": 6349938, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 86, - "CustomerId": 47, - "InvoiceDate": "2010-01-09T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 3.96, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2793, - "Name": "Cabe�a Dinossauro", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 37120, - "Bytes": 1220930, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 192, - "CustomerId": 31, - "InvoiceDate": "2011-04-20T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 5.94, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2794, - "Name": "32 Dentes", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 184946, - "Bytes": 6157904, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 86, - "CustomerId": 47, - "InvoiceDate": "2010-01-09T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 3.96, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2795, - "Name": "Bichos Escrotos (Vinheta)", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 104986, - "Bytes": 3503755, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2796, - "Name": "N�o Vou Lutar", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 189988, - "Bytes": 6308613, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 86, - "CustomerId": 47, - "InvoiceDate": "2010-01-09T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 3.96, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2797, - "Name": "Homem Primata (Vinheta)", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 34168, - "Bytes": 1124909, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 192, - "CustomerId": 31, - "InvoiceDate": "2011-04-20T00:00:00Z", - "BillingAddress": "194A Chain Lake Drive", - "BillingCity": "Halifax", - "BillingState": "NS", - "BillingCountry": "Canada", - "BillingPostalCode": "B3S 1C5", - "Total": 5.94, - "Customer": { - "CustomerId": 31, - "FirstName": "Martha", - "LastName": "Silk", - "Company": null, - "Address": "194A Chain Lake Drive", - "City": "Halifax", - "State": "NS", - "Country": "Canada", - "PostalCode": "B3S 1C5", - "Phone": "+1 (902) 450-0450", - "Fax": null, - "Email": "marthasilk@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2798, - "Name": "Homem Primata", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 195500, - "Bytes": 6486470, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2799, - "Name": "Pol�cia (Vinheta)", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 56111, - "Bytes": 1824213, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2800, - "Name": "Querem Meu Sangue", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 212401, - "Bytes": 7069773, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 87, - "CustomerId": 51, - "InvoiceDate": "2010-01-10T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 6.94, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2801, - "Name": "Divers�o", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 285936, - "Bytes": 9531268, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2802, - "Name": "Televis�o", - "AlbumId": 224, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Tit�s", - "Milliseconds": 293668, - "Bytes": 9776548, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 225, - "Title": "Volume Dois", - "ArtistId": 146, - "Tracks": [ - { - "TrackId": 2803, - "Name": "Sonifera Ilha", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Branco Mello/Carlos Barmack/Ciro Pessoa/Marcelo Fromer/Toni Belloto", - "Milliseconds": 170684, - "Bytes": 5678290, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2804, - "Name": "Lugar Nenhum", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Antunes/Charles Gavin/Marcelo Fromer/S�rgio Britto/Toni Bellotto", - "Milliseconds": 195840, - "Bytes": 6472780, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 87, - "CustomerId": 51, - "InvoiceDate": "2010-01-10T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 6.94, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2805, - "Name": "Sua Impossivel Chance", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Nando Reis", - "Milliseconds": 246622, - "Bytes": 8073248, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 403, - "CustomerId": 56, - "InvoiceDate": "2013-11-08T00:00:00Z", - "BillingAddress": "307 Macacha G�emes", - "BillingCity": "Buenos Aires", - "BillingState": null, - "BillingCountry": "Argentina", - "BillingPostalCode": "1106", - "Total": 8.91, - "Customer": { - "CustomerId": 56, - "FirstName": "Diego", - "LastName": "Guti�rrez", - "Company": null, - "Address": "307 Macacha G�emes", - "City": "Buenos Aires", - "State": null, - "Country": "Argentina", - "PostalCode": "1106", - "Phone": "+54 (0)11 4311 4333", - "Fax": null, - "Email": "diego.gutierrez@yahoo.ar", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2806, - "Name": "Desordem", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Charles Gavin/Marcelo Fromer/S�rgio Britto", - "Milliseconds": 213289, - "Bytes": 7067340, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2807, - "Name": "N�o Vou Me Adaptar", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Antunes", - "Milliseconds": 221831, - "Bytes": 7304656, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2808, - "Name": "Domingo", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "S�rgio Britto/Toni Bellotto", - "Milliseconds": 208613, - "Bytes": 6883180, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 87, - "CustomerId": 51, - "InvoiceDate": "2010-01-10T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 6.94, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2809, - "Name": "Amanh� N�o Se Sabe", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "S�rgio Britto", - "Milliseconds": 189440, - "Bytes": 6243967, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2810, - "Name": "Caras Como Eu", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Toni Bellotto", - "Milliseconds": 183092, - "Bytes": 5999048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2811, - "Name": "Senhora E Senhor", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Anutnes/Marcelo Fromer/Paulo Miklos", - "Milliseconds": 203702, - "Bytes": 6733733, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2812, - "Name": "Era Uma Vez", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Anutnes/Branco Mello/Marcelo Fromer/Sergio Brotto/Toni Bellotto", - "Milliseconds": 224261, - "Bytes": 7453156, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 87, - "CustomerId": 51, - "InvoiceDate": "2010-01-10T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 6.94, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2813, - "Name": "Mis�ria", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Arnaldo Antunes/Britto, SergioMiklos, Paulo", - "Milliseconds": 262191, - "Bytes": 8727645, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2814, - "Name": "Insens�vel", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "S�rgio Britto", - "Milliseconds": 207830, - "Bytes": 6893664, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2815, - "Name": "Eu E Ela", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Nando Reis", - "Milliseconds": 276035, - "Bytes": 9138846, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2816, - "Name": "Toda Cor", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Ciro Pressoa/Marcelo Fromer", - "Milliseconds": 209084, - "Bytes": 6939176, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 87, - "CustomerId": 51, - "InvoiceDate": "2010-01-10T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 6.94, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2817, - "Name": "� Preciso Saber Viver", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Erasmo Carlos/Roberto Carlos", - "Milliseconds": 251115, - "Bytes": 8271418, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2818, - "Name": "Senhor Delegado/Eu N�o Aguento", - "AlbumId": 225, - "MediaTypeId": 1, - "GenreId": 4, - "Composer": "Antonio Lopes", - "Milliseconds": 156656, - "Bytes": 5277983, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 4, - "Name": "Alternative \u0026 Punk" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 147, - "Name": "Battlestar Galactica", - "Albums": [ - { - "AlbumId": 226, - "Title": "Battlestar Galactica: The Story So Far", - "ArtistId": 147, - "Tracks": [ - { - "TrackId": 2819, - "Name": "Battlestar Galactica: The Story So Far", - "AlbumId": 226, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2622250, - "Bytes": 490750393, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3", - "ArtistId": 147, - "Tracks": [ - { - "TrackId": 2820, - "Name": "Occupation / Precipice", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 5286953, - "Bytes": 1054423946, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 87, - "CustomerId": 51, - "InvoiceDate": "2010-01-10T00:00:00Z", - "BillingAddress": "Celsiusg. 9", - "BillingCity": "Stockholm", - "BillingState": null, - "BillingCountry": "Sweden", - "BillingPostalCode": "11230", - "Total": 6.94, - "Customer": { - "CustomerId": 51, - "FirstName": "Joakim", - "LastName": "Johansson", - "Company": null, - "Address": "Celsiusg. 9", - "City": "Stockholm", - "State": null, - "Country": "Sweden", - "PostalCode": "11230", - "Phone": "+46 08-651 52 52", - "Fax": null, - "Email": "joakim.johansson@yahoo.se", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2821, - "Name": "Exodus, Pt. 1", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2621708, - "Bytes": 475079441, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2822, - "Name": "Exodus, Pt. 2", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2618000, - "Bytes": 466820021, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2823, - "Name": "Collaborators", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2626626, - "Bytes": 483484911, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2824, - "Name": "Torn", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2631291, - "Bytes": 495262585, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2825, - "Name": "A Measure of Salvation", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2563938, - "Bytes": 489715554, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2826, - "Name": "Hero", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2713755, - "Bytes": 506896959, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2827, - "Name": "Unfinished Business", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2622038, - "Bytes": 528499160, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2828, - "Name": "The Passage", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2623875, - "Bytes": 490375760, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 298, - "CustomerId": 17, - "InvoiceDate": "2012-07-31T00:00:00Z", - "BillingAddress": "1 Microsoft Way", - "BillingCity": "Redmond", - "BillingState": "WA", - "BillingCountry": "USA", - "BillingPostalCode": "98052-8300", - "Total": 10.91, - "Customer": { - "CustomerId": 17, - "FirstName": "Jack", - "LastName": "Smith", - "Company": "Microsoft Corporation", - "Address": "1 Microsoft Way", - "City": "Redmond", - "State": "WA", - "Country": "USA", - "PostalCode": "98052-8300", - "Phone": "+1 (425) 882-8080", - "Fax": "+1 (425) 882-8081", - "Email": "jacksmith@microsoft.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2829, - "Name": "The Eye of Jupiter", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2618750, - "Bytes": 517909587, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2830, - "Name": "Rapture", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2624541, - "Bytes": 508406153, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2831, - "Name": "Taking a Break from All Your Worries", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2624207, - "Bytes": 492700163, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2832, - "Name": "The Woman King", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2626376, - "Bytes": 552893447, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2833, - "Name": "A Day In the Life", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2620245, - "Bytes": 462818231, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2834, - "Name": "Dirty Hands", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2627961, - "Bytes": 537648614, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2835, - "Name": "Maelstrom", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2622372, - "Bytes": 514154275, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2836, - "Name": "The Son Also Rises", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 18, - "Composer": null, - "Milliseconds": 2621830, - "Bytes": 499258498, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 18, - "Name": "Science Fiction" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2837, - "Name": "Crossroads, Pt. 1", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2622622, - "Bytes": 486233524, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2838, - "Name": "Crossroads, Pt. 2", - "AlbumId": 227, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2869953, - "Bytes": 497335706, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 148, - "Name": "Heroes", - "Albums": [ - { - "AlbumId": 228, - "Title": "Heroes, Season 1", - "ArtistId": 148, - "Tracks": [ - { - "TrackId": 2839, - "Name": "Genesis", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2611986, - "Bytes": 515671080, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2840, - "Name": "Don't Look Back", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2571154, - "Bytes": 493628775, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2841, - "Name": "One Giant Leap", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2607649, - "Bytes": 521616246, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2842, - "Name": "Collision", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2605480, - "Bytes": 526182322, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2843, - "Name": "Hiros", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2533575, - "Bytes": 488835454, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2844, - "Name": "Better Halves", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2573031, - "Bytes": 549353481, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2845, - "Name": "Nothing to Hide", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2605647, - "Bytes": 510058181, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2846, - "Name": "Seven Minutes to Midnight", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2613988, - "Bytes": 515590682, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2847, - "Name": "Homecoming", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2601351, - "Bytes": 516015339, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2848, - "Name": "Six Months Ago", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2602852, - "Bytes": 505133869, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2849, - "Name": "Fallout", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2594761, - "Bytes": 501145440, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2850, - "Name": "The Fix", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2600266, - "Bytes": 507026323, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2851, - "Name": "Distractions", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2590382, - "Bytes": 537111289, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 193, - "CustomerId": 37, - "InvoiceDate": "2011-04-23T00:00:00Z", - "BillingAddress": "Berger Stra�e 10", - "BillingCity": "Frankfurt", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "60316", - "Total": 14.91, - "Customer": { - "CustomerId": 37, - "FirstName": "Fynn", - "LastName": "Zimmermann", - "Company": null, - "Address": "Berger Stra�e 10", - "City": "Frankfurt", - "State": null, - "Country": "Germany", - "PostalCode": "60316", - "Phone": "+49 069 40598889", - "Fax": null, - "Email": "fzimmermann@yahoo.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2852, - "Name": "Run!", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2602602, - "Bytes": 542936677, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2853, - "Name": "Unexpected", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2598139, - "Bytes": 511777758, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2854, - "Name": "Company Man", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2601226, - "Bytes": 493168135, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2855, - "Name": "Company Man", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2601101, - "Bytes": 503786316, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2856, - "Name": "Parasite", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2602727, - "Bytes": 487461520, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3166, - "Name": ".07%", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2585794, - "Bytes": 541715199, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3167, - "Name": "Five Years Gone", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2587712, - "Bytes": 530551890, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3168, - "Name": "The Hard Part", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2601017, - "Bytes": 475996611, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3171, - "Name": "Landslide", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2600725, - "Bytes": 518677861, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3223, - "Name": "How to Stop an Exploding Man", - "AlbumId": 228, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2687103, - "Bytes": 487881159, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 202, - "CustomerId": 39, - "InvoiceDate": "2011-06-06T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 1.99, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 149, - "Name": "Lost", - "Albums": [ - { - "AlbumId": 229, - "Title": "Lost, Season 3", - "ArtistId": 149, - "Tracks": [ - { - "TrackId": 2857, - "Name": "A Tale of Two Cities", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2636970, - "Bytes": 513691652, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2862, - "Name": "The Glass Ballerina", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2637458, - "Bytes": 535729216, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2863, - "Name": "Further Instructions", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2563980, - "Bytes": 502041019, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2866, - "Name": "Every Man for Himself", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2637387, - "Bytes": 513803546, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2870, - "Name": "The Cost of Living", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2637500, - "Bytes": 505647192, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2874, - "Name": "I Do", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2627791, - "Bytes": 504676825, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2875, - "Name": "Not In Portland", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2637303, - "Bytes": 499061234, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2876, - "Name": "Not In Portland", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2637345, - "Bytes": 510546847, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2881, - "Name": "Flashes Before Your Eyes", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2636636, - "Bytes": 537760755, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2882, - "Name": "Lost Survival Guide", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2632590, - "Bytes": 486675063, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2886, - "Name": "Stranger In a Strange Land", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2636428, - "Bytes": 505056021, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2890, - "Name": "Tricia Tanaka Is Dead", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2635010, - "Bytes": 548197162, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2891, - "Name": "Enter 77", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2629796, - "Bytes": 517521422, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2895, - "Name": "Par Avion", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2629879, - "Bytes": 517079642, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2899, - "Name": "The Man from Tallahassee", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2637637, - "Bytes": 550893556, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2900, - "Name": "Expos�", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2593760, - "Bytes": 511338017, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2903, - "Name": "Left Behind", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2635343, - "Bytes": 538491964, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2908, - "Name": "One of Us", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2638096, - "Bytes": 502387276, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2909, - "Name": "Catch-22", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2561394, - "Bytes": 489773399, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2912, - "Name": "D.O.C.", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2616032, - "Bytes": 518556641, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3165, - "Name": "The Brig", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2617325, - "Bytes": 488919543, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3169, - "Name": "The Man Behind the Curtain", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2615990, - "Bytes": 493951081, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3170, - "Name": "Greatest Hits", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2617117, - "Bytes": 522102916, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3224, - "Name": "Through a Looking Glass", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 5088838, - "Bytes": 1059546140, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 203, - "CustomerId": 40, - "InvoiceDate": "2011-06-19T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 2.98, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3251, - "Name": "Through the Looking Glass, Pt. 2", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2617117, - "Bytes": 550943353, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3252, - "Name": "Through the Looking Glass, Pt. 1", - "AlbumId": 229, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2610860, - "Bytes": 493211809, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 99, - "CustomerId": 3, - "InvoiceDate": "2010-03-11T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 3.98, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 230, - "Title": "Lost, Season 1", - "ArtistId": 149, - "Tracks": [ - { - "TrackId": 2858, - "Name": "Lost (Pilot, Part 1) [Premiere]", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2548875, - "Bytes": 217124866, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2861, - "Name": "Lost (Pilot, Part 2)", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2436583, - "Bytes": 204995876, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2865, - "Name": "Tabula Rasa", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2627105, - "Bytes": 210526410, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2868, - "Name": "Walkabout", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2587370, - "Bytes": 207748198, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 88, - "CustomerId": 57, - "InvoiceDate": "2010-01-13T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 17.91, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2871, - "Name": "White Rabbit", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2571965, - "Bytes": 201654606, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2873, - "Name": "House of the Rising Sun", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2590032, - "Bytes": 210379525, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2877, - "Name": "The Moth", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2631327, - "Bytes": 228896396, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2880, - "Name": "Confidence Man", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2615244, - "Bytes": 223756475, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2883, - "Name": "Solitary", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2612894, - "Bytes": 207045178, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2885, - "Name": "Raised By Another", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2590459, - "Bytes": 223623810, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2888, - "Name": "All the Best Cowboys Have Daddy Issues", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2555492, - "Bytes": 211743651, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2893, - "Name": "Whatever the Case May Be", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2616410, - "Bytes": 183867185, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2894, - "Name": "Hearts and Minds", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2619462, - "Bytes": 207607466, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2898, - "Name": "Special", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2618530, - "Bytes": 219961967, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2901, - "Name": "Homecoming", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2515882, - "Bytes": 210675221, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2904, - "Name": "Outlaws", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2619887, - "Bytes": 206500939, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2906, - "Name": "...In Translation", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2604575, - "Bytes": 215441983, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2911, - "Name": "Numbers", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2609772, - "Bytes": 214709143, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2913, - "Name": "Deus Ex Machina", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2582009, - "Bytes": 214996732, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2915, - "Name": "Do No Harm", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2618487, - "Bytes": 212039309, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2917, - "Name": "The Greater Good", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2617784, - "Bytes": 214130273, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2919, - "Name": "Born to Run", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2618619, - "Bytes": 213772057, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2921, - "Name": "Exodus (Part 1)", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2620747, - "Bytes": 213107744, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2923, - "Name": "Exodus (Part 2) [Season Finale]", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2605557, - "Bytes": 208667059, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2925, - "Name": "Exodus (Part 3) [Season Finale]", - "AlbumId": 230, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2619869, - "Bytes": 197937785, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 231, - "Title": "Lost, Season 2", - "ArtistId": 149, - "Tracks": [ - { - "TrackId": 2859, - "Name": "Man of Science, Man of Faith (Premiere)", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2612250, - "Bytes": 543342028, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2860, - "Name": "Adrift", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2564958, - "Bytes": 502663995, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2864, - "Name": "Orientation", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2609083, - "Bytes": 500600434, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2867, - "Name": "Everybody Hates Hugo", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2609192, - "Bytes": 498163145, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2869, - "Name": "...And Found", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2563833, - "Bytes": 500330548, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2872, - "Name": "Abandoned", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2587041, - "Bytes": 537348711, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2878, - "Name": "The Other 48 Days", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2610625, - "Bytes": 535256753, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2879, - "Name": "Collision", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2564916, - "Bytes": 475656544, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2884, - "Name": "What Kate Did", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2610250, - "Bytes": 484583988, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2887, - "Name": "The 23rd Psalm", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2610416, - "Bytes": 487401604, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2889, - "Name": "The Hunting Party", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2611333, - "Bytes": 520350364, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2892, - "Name": "Fire + Water", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2600333, - "Bytes": 488458695, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2896, - "Name": "The Long Con", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2679583, - "Bytes": 518376636, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2897, - "Name": "One of Them", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2698791, - "Bytes": 542332389, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2902, - "Name": "Maternity Leave", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2780416, - "Bytes": 555244214, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2905, - "Name": "The Whole Truth", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2610125, - "Bytes": 495487014, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2907, - "Name": "Lockdown", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2610250, - "Bytes": 543886056, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2910, - "Name": "Dave", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2825166, - "Bytes": 574325829, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2914, - "Name": "S.O.S.", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2639541, - "Bytes": 517979269, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2916, - "Name": "Two for the Road", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2610958, - "Bytes": 502404558, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2918, - "Name": "\"?\"", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2782333, - "Bytes": 528227089, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2920, - "Name": "Three Minutes", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2763666, - "Bytes": 531556853, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 2922, - "Name": "Live Together, Die Alone, Pt. 1", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2478041, - "Bytes": 457364940, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2924, - "Name": "Live Together, Die Alone, Pt. 2", - "AlbumId": 231, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2656531, - "Bytes": 503619265, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 261, - "Title": "LOST, Season 4", - "ArtistId": 149, - "Tracks": [ - { - "TrackId": 3337, - "Name": "Past, Present, and Future", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2492867, - "Bytes": 490796184, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3338, - "Name": "The Beginning of the End", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2611903, - "Bytes": 526865050, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3339, - "Name": "LOST Season 4 Trailer", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 112712, - "Bytes": 20831818, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3340, - "Name": "LOST In 8:15", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 497163, - "Bytes": 98460675, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3341, - "Name": "Confirmed Dead", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2611986, - "Bytes": 512168460, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3342, - "Name": "The Economist", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2609025, - "Bytes": 516934914, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3343, - "Name": "Eggtown", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2608817, - "Bytes": 501061240, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3344, - "Name": "The Constant", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2611569, - "Bytes": 520209363, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3345, - "Name": "The Other Woman", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2605021, - "Bytes": 513246663, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3346, - "Name": "Ji Yeon", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2588797, - "Bytes": 506458858, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3347, - "Name": "Meet Kevin Johnson", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2612028, - "Bytes": 504132981, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3348, - "Name": "The Shape of Things to Come", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2591299, - "Bytes": 502284266, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3360, - "Name": "Something Nice Back Home", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2612779, - "Bytes": 484711353, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3361, - "Name": "Cabin Fever", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2612028, - "Bytes": 477733942, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3362, - "Name": "There's No Place Like Home, Pt. 1", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2609526, - "Bytes": 522919189, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3363, - "Name": "There's No Place Like Home, Pt. 2", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2497956, - "Bytes": 523748920, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3364, - "Name": "There's No Place Like Home, Pt. 3", - "AlbumId": 261, - "MediaTypeId": 3, - "GenreId": 21, - "Composer": null, - "Milliseconds": 2582957, - "Bytes": 486161766, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 21, - "Name": "Drama" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 150, - "Name": "U2", - "Albums": [ - { - "AlbumId": 232, - "Title": "Achtung Baby", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 2926, - "Name": "Zoo Station", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 276349, - "Bytes": 9056902, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2927, - "Name": "Even Better Than The Real Thing", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 221361, - "Bytes": 7279392, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2928, - "Name": "One", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 276192, - "Bytes": 9158892, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2929, - "Name": "Until The End Of The World", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 278700, - "Bytes": 9132485, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2930, - "Name": "Who's Gonna Ride Your Wild Horses", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 316551, - "Bytes": 10304369, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2931, - "Name": "So Cruel", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 349492, - "Bytes": 11527614, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 404, - "CustomerId": 6, - "InvoiceDate": "2013-11-13T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 25.86, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2932, - "Name": "The Fly", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 268982, - "Bytes": 8825399, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2933, - "Name": "Mysterious Ways", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 243826, - "Bytes": 8062057, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2934, - "Name": "Tryin' To Throw Your Arms Around The World", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 232463, - "Bytes": 7612124, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2935, - "Name": "Ultraviolet (Light My Way)", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 330788, - "Bytes": 10754631, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2936, - "Name": "Acrobat", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 270288, - "Bytes": 8824723, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2937, - "Name": "Love Is Blindness", - "AlbumId": 232, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 263497, - "Bytes": 8531766, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 233, - "Title": "All That You Can't Leave Behind", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 2938, - "Name": "Beautiful Day", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 248163, - "Bytes": 8056723, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2939, - "Name": "Stuck In A Moment You Can't Get Out Of", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 272378, - "Bytes": 8997366, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2940, - "Name": "Elevation", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 227552, - "Bytes": 7479414, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2941, - "Name": "Walk On", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 296280, - "Bytes": 9800861, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2942, - "Name": "Kite", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 266893, - "Bytes": 8765761, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2943, - "Name": "In A Little While", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 219271, - "Bytes": 7189647, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2944, - "Name": "Wild Honey", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 226768, - "Bytes": 7466069, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2945, - "Name": "Peace On Earth", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 288496, - "Bytes": 9476171, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 405, - "CustomerId": 20, - "InvoiceDate": "2013-11-21T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 0.99, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2946, - "Name": "When I Look At The World", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 257776, - "Bytes": 8500491, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 406, - "CustomerId": 21, - "InvoiceDate": "2013-12-04T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 1.98, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2947, - "Name": "New York", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 330370, - "Bytes": 10862323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 406, - "CustomerId": 21, - "InvoiceDate": "2013-12-04T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 1.98, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2948, - "Name": "Grace", - "AlbumId": 233, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Milliseconds": 330657, - "Bytes": 10877148, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 234, - "Title": "B-Sides 1980-1990", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 2949, - "Name": "The Three Sunrises", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 234788, - "Bytes": 7717990, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 407, - "CustomerId": 23, - "InvoiceDate": "2013-12-04T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 1.98, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2950, - "Name": "Spanish Eyes", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 196702, - "Bytes": 6392710, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2951, - "Name": "Sweetest Thing", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 185103, - "Bytes": 6154896, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 407, - "CustomerId": 23, - "InvoiceDate": "2013-12-04T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 1.98, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2952, - "Name": "Love Comes Tumbling", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 282671, - "Bytes": 9328802, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2953, - "Name": "Bass Trap", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 213289, - "Bytes": 6834107, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 408, - "CustomerId": 25, - "InvoiceDate": "2013-12-05T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 3.96, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2954, - "Name": "Dancing Barefoot", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ivan Kral/Patti Smith", - "Milliseconds": 287895, - "Bytes": 9488294, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 299, - "CustomerId": 26, - "InvoiceDate": "2012-08-05T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 23.86, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2955, - "Name": "Everlasting Love", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Buzz Cason/Mac Gayden", - "Milliseconds": 202631, - "Bytes": 6708932, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 408, - "CustomerId": 25, - "InvoiceDate": "2013-12-05T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 3.96, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2956, - "Name": "Unchained Melody", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alex North/Hy Zaret", - "Milliseconds": 294164, - "Bytes": 9597568, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2957, - "Name": "Walk To The Water", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 289253, - "Bytes": 9523336, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 408, - "CustomerId": 25, - "InvoiceDate": "2013-12-05T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 3.96, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2958, - "Name": "Luminous Times (Hold On To Love)", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Brian Eno/U2", - "Milliseconds": 277760, - "Bytes": 9015513, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2959, - "Name": "Hallelujah Here She Comes", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 242364, - "Bytes": 8027028, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 408, - "CustomerId": 25, - "InvoiceDate": "2013-12-05T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 3.96, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2960, - "Name": "Silver And Gold", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono", - "Milliseconds": 279875, - "Bytes": 9199746, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2961, - "Name": "Endless Deep", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 179879, - "Bytes": 5899070, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2962, - "Name": "A Room At The Heartbreak Hotel", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 274546, - "Bytes": 9015416, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2963, - "Name": "Trash, Trampoline And The Party Girl", - "AlbumId": 234, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 153965, - "Bytes": 5083523, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 409, - "CustomerId": 29, - "InvoiceDate": "2013-12-06T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 5.94, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 235, - "Title": "How To Dismantle An Atomic Bomb", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 2964, - "Name": "Vertigo", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 194612, - "Bytes": 6329502, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2965, - "Name": "Miracle Drug", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 239124, - "Bytes": 7760916, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2966, - "Name": "Sometimes You Can't Make It On Your Own", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 308976, - "Bytes": 10112863, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2967, - "Name": "Love And Peace Or Else", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 290690, - "Bytes": 9476723, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 409, - "CustomerId": 29, - "InvoiceDate": "2013-12-06T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 5.94, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2968, - "Name": "City Of Blinding Lights", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 347951, - "Bytes": 11432026, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 300, - "CustomerId": 40, - "InvoiceDate": "2012-08-13T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 0.99, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2969, - "Name": "All Because Of You", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 219141, - "Bytes": 7198014, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 301, - "CustomerId": 41, - "InvoiceDate": "2012-08-26T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 1.98, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2970, - "Name": "A Man And A Woman", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 270132, - "Bytes": 8938285, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 301, - "CustomerId": 41, - "InvoiceDate": "2012-08-26T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 1.98, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2971, - "Name": "Crumbs From Your Table", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 303568, - "Bytes": 9892349, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 409, - "CustomerId": 29, - "InvoiceDate": "2013-12-06T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 5.94, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2972, - "Name": "One Step Closer", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 231680, - "Bytes": 7512912, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 302, - "CustomerId": 43, - "InvoiceDate": "2012-08-26T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 1.98, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2973, - "Name": "Original Of The Species", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 281443, - "Bytes": 9230041, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2974, - "Name": "Yahweh", - "AlbumId": 235, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Adam Clayton, Bono, Larry Mullen \u0026 The Edge", - "Milliseconds": 262034, - "Bytes": 8636998, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 302, - "CustomerId": 43, - "InvoiceDate": "2012-08-26T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 1.98, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 236, - "Title": "Pop", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 2975, - "Name": "Discotheque", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 319582, - "Bytes": 10442206, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 409, - "CustomerId": 29, - "InvoiceDate": "2013-12-06T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 5.94, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2976, - "Name": "Do You Feel Loved", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 307539, - "Bytes": 10122694, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 303, - "CustomerId": 45, - "InvoiceDate": "2012-08-27T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 3.96, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2977, - "Name": "Mofo", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 349178, - "Bytes": 11583042, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 194, - "CustomerId": 46, - "InvoiceDate": "2011-04-28T00:00:00Z", - "BillingAddress": "3 Chatham Street", - "BillingCity": "Dublin", - "BillingState": "Dublin", - "BillingCountry": "Ireland", - "BillingPostalCode": null, - "Total": 21.86, - "Customer": { - "CustomerId": 46, - "FirstName": "Hugh", - "LastName": "O'Reilly", - "Company": null, - "Address": "3 Chatham Street", - "City": "Dublin", - "State": "Dublin", - "Country": "Ireland", - "PostalCode": null, - "Phone": "+353 01 6792424", - "Fax": null, - "Email": "hughoreilly@apple.ie", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2978, - "Name": "If God Will Send His Angels", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 322533, - "Bytes": 10563329, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 303, - "CustomerId": 45, - "InvoiceDate": "2012-08-27T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 3.96, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2979, - "Name": "Staring At The Sun", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 276924, - "Bytes": 9082838, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 409, - "CustomerId": 29, - "InvoiceDate": "2013-12-06T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 5.94, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2980, - "Name": "Last Night On Earth", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 285753, - "Bytes": 9401017, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 303, - "CustomerId": 45, - "InvoiceDate": "2012-08-27T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 3.96, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2981, - "Name": "Gone", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 266866, - "Bytes": 8746301, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2982, - "Name": "Miami", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 293041, - "Bytes": 9741603, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 303, - "CustomerId": 45, - "InvoiceDate": "2012-08-27T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 3.96, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2983, - "Name": "The Playboy Mansion", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 280555, - "Bytes": 9274144, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 409, - "CustomerId": 29, - "InvoiceDate": "2013-12-06T00:00:00Z", - "BillingAddress": "796 Dundas Street West", - "BillingCity": "Toronto", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "M6J 1V1", - "Total": 5.94, - "Customer": { - "CustomerId": 29, - "FirstName": "Robert", - "LastName": "Brown", - "Company": null, - "Address": "796 Dundas Street West", - "City": "Toronto", - "State": "ON", - "Country": "Canada", - "PostalCode": "M6J 1V1", - "Phone": "+1 (416) 363-8888", - "Fax": null, - "Email": "robbrown@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2984, - "Name": "If You Wear That Velvet Dress", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 315167, - "Bytes": 10227333, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2985, - "Name": "Please", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 302602, - "Bytes": 9909484, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2986, - "Name": "Wake Up Dead Man", - "AlbumId": 236, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Milliseconds": 292832, - "Bytes": 9515903, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 304, - "CustomerId": 49, - "InvoiceDate": "2012-08-28T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 5.94, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 237, - "Title": "Rattle And Hum", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 2987, - "Name": "Helter Skelter", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Lennon, John/McCartney, Paul", - "Milliseconds": 187350, - "Bytes": 6097636, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2988, - "Name": "Van Diemen's Land", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 186044, - "Bytes": 5990280, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2989, - "Name": "Desire", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 179226, - "Bytes": 5874535, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2990, - "Name": "Hawkmoon 269", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 382458, - "Bytes": 12494987, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 304, - "CustomerId": 49, - "InvoiceDate": "2012-08-28T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 5.94, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2991, - "Name": "All Along The Watchtower", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dylan, Bob", - "Milliseconds": 264568, - "Bytes": 8623572, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 195, - "CustomerId": 1, - "InvoiceDate": "2011-05-06T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 0.99, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2992, - "Name": "I Still Haven't Found What I'm Looking for", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 353567, - "Bytes": 11542247, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 196, - "CustomerId": 2, - "InvoiceDate": "2011-05-19T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 1.98, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2993, - "Name": "Freedom For My People", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Mabins, Macie/Magee, Sterling/Robinson, Bobby", - "Milliseconds": 38164, - "Bytes": 1249764, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 196, - "CustomerId": 2, - "InvoiceDate": "2011-05-19T00:00:00Z", - "BillingAddress": "Theodor-Heuss-Stra�e 34", - "BillingCity": "Stuttgart", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "70174", - "Total": 1.98, - "Customer": { - "CustomerId": 2, - "FirstName": "Leonie", - "LastName": "K�hler", - "Company": null, - "Address": "Theodor-Heuss-Stra�e 34", - "City": "Stuttgart", - "State": null, - "Country": "Germany", - "PostalCode": "70174", - "Phone": "+49 0711 2842222", - "Fax": null, - "Email": "leonekohler@surfeu.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2994, - "Name": "Silver And Gold", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 349831, - "Bytes": 11450194, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 304, - "CustomerId": 49, - "InvoiceDate": "2012-08-28T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 5.94, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2995, - "Name": "Pride (In The Name Of Love)", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 267807, - "Bytes": 8806361, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 197, - "CustomerId": 4, - "InvoiceDate": "2011-05-19T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 1.98, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2996, - "Name": "Angel Of Harlem", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 229276, - "Bytes": 7498022, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 2997, - "Name": "Love Rescue Me", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Dylan, Bob/Mullen Jr., Larry/The Edge", - "Milliseconds": 384522, - "Bytes": 12508716, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 197, - "CustomerId": 4, - "InvoiceDate": "2011-05-19T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 1.98, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2998, - "Name": "When Love Comes To Town", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 255869, - "Bytes": 8340954, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 304, - "CustomerId": 49, - "InvoiceDate": "2012-08-28T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 5.94, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 2999, - "Name": "Heartland", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 303360, - "Bytes": 9867748, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 198, - "CustomerId": 6, - "InvoiceDate": "2011-05-20T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 3.96, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3000, - "Name": "God Part II", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 195604, - "Bytes": 6497570, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 89, - "CustomerId": 7, - "InvoiceDate": "2010-01-18T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 18.86, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3001, - "Name": "The Star Spangled Banner", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Hendrix, Jimi", - "Milliseconds": 43232, - "Bytes": 1385810, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 198, - "CustomerId": 6, - "InvoiceDate": "2011-05-20T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 3.96, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3002, - "Name": "Bullet The Blue Sky", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 337005, - "Bytes": 10993607, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 304, - "CustomerId": 49, - "InvoiceDate": "2012-08-28T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 5.94, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3003, - "Name": "All I Want Is You", - "AlbumId": 237, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Milliseconds": 390243, - "Bytes": 12729820, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 198, - "CustomerId": 6, - "InvoiceDate": "2011-05-20T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 3.96, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 238, - "Title": "The Best Of 1980-1990", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 3004, - "Name": "Pride (In The Name Of Love)", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 230243, - "Bytes": 7549085, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3005, - "Name": "New Year's Day", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 258925, - "Bytes": 8491818, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 198, - "CustomerId": 6, - "InvoiceDate": "2011-05-20T00:00:00Z", - "BillingAddress": "Rilsk� 3174/6", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14300", - "Total": 3.96, - "Customer": { - "CustomerId": 6, - "FirstName": "Helena", - "LastName": "Hol�", - "Company": null, - "Address": "Rilsk� 3174/6", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14300", - "Phone": "+420 2 4177 0449", - "Fax": null, - "Email": "hholy@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3006, - "Name": "With Or Without You", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 299023, - "Bytes": 9765188, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 304, - "CustomerId": 49, - "InvoiceDate": "2012-08-28T00:00:00Z", - "BillingAddress": "Ordynacka 10", - "BillingCity": "Warsaw", - "BillingState": null, - "BillingCountry": "Poland", - "BillingPostalCode": "00-358", - "Total": 5.94, - "Customer": { - "CustomerId": 49, - "FirstName": "Stanislaw", - "LastName": "W�jcik", - "Company": null, - "Address": "Ordynacka 10", - "City": "Warsaw", - "State": null, - "Country": "Poland", - "PostalCode": "00-358", - "Phone": "+48 22 828 37 39", - "Fax": null, - "Email": "stanislaw.w�jcik@wp.pl", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3007, - "Name": "I Still Haven't Found What I'm Looking For", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 280764, - "Bytes": 9306737, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3008, - "Name": "Sunday Bloody Sunday", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 282174, - "Bytes": 9269668, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3009, - "Name": "Bad", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 351817, - "Bytes": 11628058, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 199, - "CustomerId": 10, - "InvoiceDate": "2011-05-21T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 5.94, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3010, - "Name": "Where The Streets Have No Name", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 276218, - "Bytes": 9042305, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3011, - "Name": "I Will Follow", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 218253, - "Bytes": 7184825, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3012, - "Name": "The Unforgettable Fire", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 295183, - "Bytes": 9684664, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3013, - "Name": "Sweetest Thing", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2 \u0026 Daragh O'Toole", - "Milliseconds": 183066, - "Bytes": 6071385, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 199, - "CustomerId": 10, - "InvoiceDate": "2011-05-21T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 5.94, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3014, - "Name": "Desire", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 179853, - "Bytes": 5893206, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 90, - "CustomerId": 21, - "InvoiceDate": "2010-01-26T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 0.99, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3015, - "Name": "When Love Comes To Town", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 258194, - "Bytes": 8479525, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 91, - "CustomerId": 22, - "InvoiceDate": "2010-02-08T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 1.98, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3016, - "Name": "Angel Of Harlem", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 230217, - "Bytes": 7527339, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 91, - "CustomerId": 22, - "InvoiceDate": "2010-02-08T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 1.98, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3017, - "Name": "All I Want Is You", - "AlbumId": 238, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2 \u0026 Van Dyke Parks", - "Milliseconds": 591986, - "Bytes": 19202252, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 199, - "CustomerId": 10, - "InvoiceDate": "2011-05-21T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 5.94, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 239, - "Title": "War", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 3018, - "Name": "Sunday Bloody Sunday", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 278204, - "Bytes": 9140849, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 92, - "CustomerId": 24, - "InvoiceDate": "2010-02-08T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 1.98, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3019, - "Name": "Seconds", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 191582, - "Bytes": 6352121, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3020, - "Name": "New Year's Day", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 336274, - "Bytes": 11054732, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 92, - "CustomerId": 24, - "InvoiceDate": "2010-02-08T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 1.98, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3021, - "Name": "Like A Song...", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 287294, - "Bytes": 9365379, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 199, - "CustomerId": 10, - "InvoiceDate": "2011-05-21T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 5.94, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3022, - "Name": "Drowning Man", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 254458, - "Bytes": 8457066, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 93, - "CustomerId": 26, - "InvoiceDate": "2010-02-09T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 3.96, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3023, - "Name": "The Refugee", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 221283, - "Bytes": 7374043, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3024, - "Name": "Two Hearts Beat As One", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 243487, - "Bytes": 7998323, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 93, - "CustomerId": 26, - "InvoiceDate": "2010-02-09T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 3.96, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3025, - "Name": "Red Light", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 225854, - "Bytes": 7453704, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 199, - "CustomerId": 10, - "InvoiceDate": "2011-05-21T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 5.94, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3026, - "Name": "Surrender", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 333505, - "Bytes": 11221406, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 93, - "CustomerId": 26, - "InvoiceDate": "2010-02-09T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 3.96, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3027, - "Name": "\"40\"", - "AlbumId": 239, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2", - "Milliseconds": 157962, - "Bytes": 5251767, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 240, - "Title": "Zooropa", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 3028, - "Name": "Zooropa", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono", - "Milliseconds": 392359, - "Bytes": 12807979, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 93, - "CustomerId": 26, - "InvoiceDate": "2010-02-09T00:00:00Z", - "BillingAddress": "2211 W Berry Street", - "BillingCity": "Fort Worth", - "BillingState": "TX", - "BillingCountry": "USA", - "BillingPostalCode": "76110", - "Total": 3.96, - "Customer": { - "CustomerId": 26, - "FirstName": "Richard", - "LastName": "Cunningham", - "Company": null, - "Address": "2211 W Berry Street", - "City": "Fort Worth", - "State": "TX", - "Country": "USA", - "PostalCode": "76110", - "Phone": "+1 (817) 924-7272", - "Fax": null, - "Email": "ricunningham@hotmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3029, - "Name": "Babyface", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono", - "Milliseconds": 241998, - "Bytes": 7942573, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 199, - "CustomerId": 10, - "InvoiceDate": "2011-05-21T00:00:00Z", - "BillingAddress": "Rua Dr. Falc�o Filho, 155", - "BillingCity": "S�o Paulo", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "01007-010", - "Total": 5.94, - "Customer": { - "CustomerId": 10, - "FirstName": "Eduardo", - "LastName": "Martins", - "Company": "Woodstock Discos", - "Address": "Rua Dr. Falc�o Filho, 155", - "City": "S�o Paulo", - "State": "SP", - "Country": "Brazil", - "PostalCode": "01007-010", - "Phone": "+55 (11) 3033-5446", - "Fax": "+55 (11) 3033-4564", - "Email": "eduardo@woodstock.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3030, - "Name": "Numb", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Edge, The", - "Milliseconds": 260284, - "Bytes": 8577861, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3031, - "Name": "Lemon", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono", - "Milliseconds": 418324, - "Bytes": 13988878, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3032, - "Name": "Stay (Faraway, So Close!)", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono", - "Milliseconds": 298475, - "Bytes": 9785480, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 94, - "CustomerId": 30, - "InvoiceDate": "2010-02-10T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 5.94, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3033, - "Name": "Daddy's Gonna Pay For Your Crashed Car", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono", - "Milliseconds": 320287, - "Bytes": 10609581, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3034, - "Name": "Some Days Are Better Than Others", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono", - "Milliseconds": 257436, - "Bytes": 8417690, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3035, - "Name": "The First Time", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono", - "Milliseconds": 225697, - "Bytes": 7247651, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3036, - "Name": "Dirty Day", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono \u0026 Edge, The", - "Milliseconds": 324440, - "Bytes": 10652877, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 94, - "CustomerId": 30, - "InvoiceDate": "2010-02-10T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 5.94, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3037, - "Name": "The Wanderer", - "AlbumId": 240, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "U2; Bono", - "Milliseconds": 283951, - "Bytes": 9258717, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 410, - "CustomerId": 35, - "InvoiceDate": "2013-12-09T00:00:00Z", - "BillingAddress": "Rua dos Campe�es Europeus de Viena, 4350", - "BillingCity": "Porto", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 8.91, - "Customer": { - "CustomerId": 35, - "FirstName": "Madalena", - "LastName": "Sampaio", - "Company": null, - "Address": "Rua dos Campe�es Europeus de Viena, 4350", - "City": "Porto", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (225) 022-448", - "Fax": null, - "Email": "masampaio@sapo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur", - "ArtistId": 150, - "Tracks": [ - { - "TrackId": 3253, - "Name": "Instant Karma", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 193188, - "Bytes": 3150090, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 206, - "CustomerId": 48, - "InvoiceDate": "2011-06-21T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.94, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3254, - "Name": "#9 Dream", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 278312, - "Bytes": 4506425, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 100, - "CustomerId": 5, - "InvoiceDate": "2010-03-12T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 3.96, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3255, - "Name": "Mother", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 287740, - "Bytes": 4656660, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3256, - "Name": "Give Peace a Chance", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 274644, - "Bytes": 4448025, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 100, - "CustomerId": 5, - "InvoiceDate": "2010-03-12T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 3.96, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3257, - "Name": "Cold Turkey", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 281424, - "Bytes": 4556003, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 206, - "CustomerId": 48, - "InvoiceDate": "2011-06-21T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.94, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3258, - "Name": "Whatever Gets You Thru the Night", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 215084, - "Bytes": 3499018, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 100, - "CustomerId": 5, - "InvoiceDate": "2010-03-12T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 3.96, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3259, - "Name": "I'm Losing You", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 240719, - "Bytes": 3907467, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3260, - "Name": "Gimme Some Truth", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 232778, - "Bytes": 3780807, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 100, - "CustomerId": 5, - "InvoiceDate": "2010-03-12T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 3.96, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3261, - "Name": "Oh, My Love", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 159473, - "Bytes": 2612788, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 206, - "CustomerId": 48, - "InvoiceDate": "2011-06-21T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.94, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3262, - "Name": "Imagine", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 192329, - "Bytes": 3136271, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3263, - "Name": "Nobody Told Me", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 210348, - "Bytes": 3423395, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3264, - "Name": "Jealous Guy", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 239094, - "Bytes": 3881620, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 101, - "CustomerId": 9, - "InvoiceDate": "2010-03-13T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 5.94, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3265, - "Name": "Working Class Hero", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 265449, - "Bytes": 4301430, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3266, - "Name": "Power to the People", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 213018, - "Bytes": 3466029, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3267, - "Name": "Imagine", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 219078, - "Bytes": 3562542, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3268, - "Name": "Beautiful Boy", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 227995, - "Bytes": 3704642, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 101, - "CustomerId": 9, - "InvoiceDate": "2010-03-13T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 5.94, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3269, - "Name": "Isolation", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 156059, - "Bytes": 2558399, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3270, - "Name": "Watching the Wheels", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 198645, - "Bytes": 3237063, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3271, - "Name": "Grow Old With Me", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 149093, - "Bytes": 2447453, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3272, - "Name": "Gimme Some Truth", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 187546, - "Bytes": 3060083, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 101, - "CustomerId": 9, - "InvoiceDate": "2010-03-13T00:00:00Z", - "BillingAddress": "S�nder Boulevard 51", - "BillingCity": "Copenhagen", - "BillingState": null, - "BillingCountry": "Denmark", - "BillingPostalCode": "1720", - "Total": 5.94, - "Customer": { - "CustomerId": 9, - "FirstName": "Kara", - "LastName": "Nielsen", - "Company": null, - "Address": "S�nder Boulevard 51", - "City": "Copenhagen", - "State": null, - "Country": "Denmark", - "PostalCode": "1720", - "Phone": "+453 3331 9991", - "Fax": null, - "Email": "kara.nielsen@jubii.dk", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3273, - "Name": "[Just Like] Starting Over", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 215549, - "Bytes": 3506308, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3274, - "Name": "God", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 260410, - "Bytes": 4221135, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3275, - "Name": "Real Love", - "AlbumId": 255, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 236911, - "Bytes": 3846658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 151, - "Name": "UB40", - "Albums": [ - { - "AlbumId": 241, - "Title": "UB40 The Best Of - Volume Two [UK]", - "ArtistId": 151, - "Tracks": [ - { - "TrackId": 3038, - "Name": "Breakfast In Bed", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 196179, - "Bytes": 6513325, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3039, - "Name": "Where Did I Go Wrong", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 226742, - "Bytes": 7485054, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3040, - "Name": "I Would Do For You", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 334524, - "Bytes": 11193602, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 94, - "CustomerId": 30, - "InvoiceDate": "2010-02-10T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 5.94, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3041, - "Name": "Homely Girl", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 203833, - "Bytes": 6790788, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3042, - "Name": "Here I Am (Come And Take Me)", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 242102, - "Bytes": 8106249, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3043, - "Name": "Kingston Town", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 226951, - "Bytes": 7638236, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3044, - "Name": "Wear You To The Ball", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 213342, - "Bytes": 7159527, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 94, - "CustomerId": 30, - "InvoiceDate": "2010-02-10T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 5.94, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3045, - "Name": "(I Can't Help) Falling In Love With You", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 207568, - "Bytes": 6905623, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3046, - "Name": "Higher Ground", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 260179, - "Bytes": 8665244, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3047, - "Name": "Bring Me Your Cup", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 341498, - "Bytes": 11346114, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3048, - "Name": "C'est La Vie", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 270053, - "Bytes": 9031661, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 94, - "CustomerId": 30, - "InvoiceDate": "2010-02-10T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 5.94, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3049, - "Name": "Reggae Music", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 245106, - "Bytes": 8203931, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3050, - "Name": "Superstition", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 319582, - "Bytes": 10728099, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3051, - "Name": "Until My Dying Day", - "AlbumId": 241, - "MediaTypeId": 1, - "GenreId": 8, - "Composer": null, - "Milliseconds": 235807, - "Bytes": 7886195, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 8, - "Name": "Reggae" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 152, - "Name": "Van Halen", - "Albums": [ - { - "AlbumId": 242, - "Title": "Diver Down", - "ArtistId": 152, - "Tracks": [ - { - "TrackId": 3052, - "Name": "Where Have All The Good Times Gone?", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ray Davies", - "Milliseconds": 186723, - "Bytes": 6063937, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 94, - "CustomerId": 30, - "InvoiceDate": "2010-02-10T00:00:00Z", - "BillingAddress": "230 Elgin Street", - "BillingCity": "Ottawa", - "BillingState": "ON", - "BillingCountry": "Canada", - "BillingPostalCode": "K2P 1L7", - "Total": 5.94, - "Customer": { - "CustomerId": 30, - "FirstName": "Edward", - "LastName": "Francis", - "Company": null, - "Address": "230 Elgin Street", - "City": "Ottawa", - "State": "ON", - "Country": "Canada", - "PostalCode": "K2P 1L7", - "Phone": "+1 (613) 234-3322", - "Fax": null, - "Email": "edfrancis@yachoo.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3053, - "Name": "Hang 'Em High", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Milliseconds": 210259, - "Bytes": 6872314, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3054, - "Name": "Cathedral", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Milliseconds": 82860, - "Bytes": 2650998, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3055, - "Name": "Secrets", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Milliseconds": 206968, - "Bytes": 6803255, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3056, - "Name": "Intruder", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Milliseconds": 100153, - "Bytes": 3282142, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3057, - "Name": "(Oh) Pretty Woman", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Bill Dees/Roy Orbison", - "Milliseconds": 174680, - "Bytes": 5665828, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3058, - "Name": "Dancing In The Street", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ivy Jo Hunter/Marvin Gaye/William Stevenson", - "Milliseconds": 225985, - "Bytes": 7461499, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3059, - "Name": "Little Guitars (Intro)", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Milliseconds": 42240, - "Bytes": 1439530, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3060, - "Name": "Little Guitars", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Milliseconds": 228806, - "Bytes": 7453043, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 305, - "CustomerId": 55, - "InvoiceDate": "2012-08-31T00:00:00Z", - "BillingAddress": "421 Bourke Street", - "BillingCity": "Sidney", - "BillingState": "NSW", - "BillingCountry": "Australia", - "BillingPostalCode": "2010", - "Total": 8.91, - "Customer": { - "CustomerId": 55, - "FirstName": "Mark", - "LastName": "Taylor", - "Company": null, - "Address": "421 Bourke Street", - "City": "Sidney", - "State": "NSW", - "Country": "Australia", - "PostalCode": "2010", - "Phone": "+61 (02) 9332 3633", - "Fax": null, - "Email": "mark.taylor@yahoo.au", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3061, - "Name": "Big Bad Bill (Is Sweet William Now)", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Jack Yellen/Milton Ager", - "Milliseconds": 165146, - "Bytes": 5489609, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3062, - "Name": "The Full Bug", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Milliseconds": 201116, - "Bytes": 6551013, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3063, - "Name": "Happy Trails", - "AlbumId": 242, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dale Evans", - "Milliseconds": 65488, - "Bytes": 2111141, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I", - "ArtistId": 152, - "Tracks": [ - { - "TrackId": 3064, - "Name": "Eruption", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Milliseconds": 102164, - "Bytes": 3272891, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3065, - "Name": "Ain't Talkin' 'bout Love", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Milliseconds": 228336, - "Bytes": 7569506, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3066, - "Name": "Runnin' With The Devil", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Milliseconds": 215902, - "Bytes": 7061901, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3067, - "Name": "Dance the Night Away", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Milliseconds": 185965, - "Bytes": 6087433, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3068, - "Name": "And the Cradle Will Rock...", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Milliseconds": 213968, - "Bytes": 7011402, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3069, - "Name": "Unchained", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Milliseconds": 208953, - "Bytes": 6777078, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3070, - "Name": "Jump", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth", - "Milliseconds": 241711, - "Bytes": 7911090, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3071, - "Name": "Panama", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth", - "Milliseconds": 211853, - "Bytes": 6921784, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3072, - "Name": "Why Can't This Be Love", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 227761, - "Bytes": 7457655, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3073, - "Name": "Dreams", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "Milliseconds": 291813, - "Bytes": 9504119, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3074, - "Name": "When It's Love", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "Milliseconds": 338991, - "Bytes": 11049966, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3075, - "Name": "Poundcake", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "Milliseconds": 321854, - "Bytes": 10366978, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3076, - "Name": "Right Now", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 321828, - "Bytes": 10503352, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3077, - "Name": "Can't Stop Loving You", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 248502, - "Bytes": 8107896, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3078, - "Name": "Humans Being", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "Milliseconds": 308950, - "Bytes": 10014683, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3079, - "Name": "Can't Get This Stuff No More", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth", - "Milliseconds": 315376, - "Bytes": 10355753, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3080, - "Name": "Me Wise Magic", - "AlbumId": 243, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth", - "Milliseconds": 366053, - "Bytes": 12013467, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 244, - "Title": "Van Halen", - "ArtistId": 152, - "Tracks": [ - { - "TrackId": 3081, - "Name": "Runnin' With The Devil", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 216032, - "Bytes": 7056863, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3082, - "Name": "Eruption", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 102556, - "Bytes": 3286026, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3083, - "Name": "You Really Got Me", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Ray Davies", - "Milliseconds": 158589, - "Bytes": 5194092, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 200, - "CustomerId": 16, - "InvoiceDate": "2011-05-24T00:00:00Z", - "BillingAddress": "1600 Amphitheatre Parkway", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94043-1351", - "Total": 8.91, - "Customer": { - "CustomerId": 16, - "FirstName": "Frank", - "LastName": "Harris", - "Company": "Google Inc.", - "Address": "1600 Amphitheatre Parkway", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94043-1351", - "Phone": "+1 (650) 253-0000", - "Fax": "+1 (650) 253-0000", - "Email": "fharris@google.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3084, - "Name": "Ain't Talkin' 'Bout Love", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 230060, - "Bytes": 7617284, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3085, - "Name": "I'm The One", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 226507, - "Bytes": 7373922, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3086, - "Name": "Jamie's Cryin'", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 210546, - "Bytes": 6946086, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3087, - "Name": "Atomic Punk", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 182073, - "Bytes": 5908861, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3088, - "Name": "Feel Your Love Tonight", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 222850, - "Bytes": 7293608, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3089, - "Name": "Little Dreamer", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 203258, - "Bytes": 6648122, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3090, - "Name": "Ice Cream Man", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "John Brim", - "Milliseconds": 200306, - "Bytes": 6573145, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3091, - "Name": "On Fire", - "AlbumId": 244, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Milliseconds": 180636, - "Bytes": 5879235, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 245, - "Title": "Van Halen III", - "ArtistId": 152, - "Tracks": [ - { - "TrackId": 3092, - "Name": "Neworld", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 105639, - "Bytes": 3495897, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3093, - "Name": "Without You", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 390295, - "Bytes": 12619558, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3094, - "Name": "One I Want", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 330788, - "Bytes": 10743970, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3095, - "Name": "From Afar", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 324414, - "Bytes": 10524554, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3096, - "Name": "Dirty Water Dog", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 327392, - "Bytes": 10709202, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3097, - "Name": "Once", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 462837, - "Bytes": 15378082, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3098, - "Name": "Fire in the Hole", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 331728, - "Bytes": 10846768, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3099, - "Name": "Josephina", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 342491, - "Bytes": 11161521, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3100, - "Name": "Year to the Day", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 514612, - "Bytes": 16621333, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3101, - "Name": "Primary", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 86987, - "Bytes": 2812555, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3102, - "Name": "Ballot or the Bullet", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 342282, - "Bytes": 11212955, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3103, - "Name": "How Many Say I", - "AlbumId": 245, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Van Halen", - "Milliseconds": 363937, - "Bytes": 11716855, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 153, - "Name": "Velvet Revolver", - "Albums": [ - { - "AlbumId": 246, - "Title": "Contraband", - "ArtistId": 153, - "Tracks": [ - { - "TrackId": 3104, - "Name": "Sucker Train Blues", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 267859, - "Bytes": 8738780, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3105, - "Name": "Do It For The Kids", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 235911, - "Bytes": 7693331, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3106, - "Name": "Big Machine", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 265613, - "Bytes": 8673442, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 95, - "CustomerId": 36, - "InvoiceDate": "2010-02-13T00:00:00Z", - "BillingAddress": "Tauentzienstra�e 8", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10789", - "Total": 8.91, - "Customer": { - "CustomerId": 36, - "FirstName": "Hannah", - "LastName": "Schneider", - "Company": null, - "Address": "Tauentzienstra�e 8", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10789", - "Phone": "+49 030 26550280", - "Fax": null, - "Email": "hannah.schneider@yahoo.de", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3107, - "Name": "Illegal I Song", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 257750, - "Bytes": 8483347, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3108, - "Name": "Spectacle", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 221701, - "Bytes": 7252876, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3109, - "Name": "Fall To Pieces", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 270889, - "Bytes": 8823096, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3110, - "Name": "Headspace", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 223033, - "Bytes": 7237986, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3111, - "Name": "Superhuman", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 255921, - "Bytes": 8365328, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3112, - "Name": "Set Me Free", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 247954, - "Bytes": 8053388, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3113, - "Name": "You Got No Right", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 335412, - "Bytes": 10991094, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3114, - "Name": "Slither", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 248398, - "Bytes": 8118785, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3115, - "Name": "Dirty Little Thing", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Keith Nelson, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 237844, - "Bytes": 7732982, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3116, - "Name": "Loving The Alien", - "AlbumId": 246, - "MediaTypeId": 1, - "GenreId": 1, - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland \u0026 Slash", - "Milliseconds": 348786, - "Bytes": 11412762, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 154, - "Name": "Whitesnake", - "Albums": null - }, - { - "ArtistId": 155, - "Name": "Zeca Pagodinho", - "Albums": [ - { - "AlbumId": 248, - "Title": "Ao Vivo [IMPORT]", - "ArtistId": 155, - "Tracks": [ - { - "TrackId": 3146, - "Name": "Faixa Amarela", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Beto Gogo/Jess� Pai/Luiz Carlos/Zeca Pagodinho", - "Milliseconds": 240692, - "Bytes": 8082036, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3147, - "Name": "Posso At� Me Apaixonar", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dudu Nobre", - "Milliseconds": 200698, - "Bytes": 6735526, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3148, - "Name": "N�o Sou Mais Disso", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Jorge Arag�o/Zeca Pagodinho", - "Milliseconds": 225985, - "Bytes": 7613817, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3149, - "Name": "Vivo Isolado Do Mundo", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Alcides Dias Lopes", - "Milliseconds": 180035, - "Bytes": 6073995, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3150, - "Name": "Cora��o Em Desalinho", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Mauro Diniz/Ratino Sigem", - "Milliseconds": 185208, - "Bytes": 6225948, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3151, - "Name": "Seu Balanc�", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Paulinho Rezende/Toninho Geraes", - "Milliseconds": 219454, - "Bytes": 7311219, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3152, - "Name": "Vai Adiar", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Alcino Corr�a/Monarco", - "Milliseconds": 270393, - "Bytes": 9134882, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3153, - "Name": "Rugas", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Augusto Garcez/Nelson Cavaquinho", - "Milliseconds": 140930, - "Bytes": 4703182, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3154, - "Name": "Feirinha da Pavuna/Luz do Repente/Baga�o da Laranja", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Arlindo Cruz/Franco/Marquinhos PQD/Negro, Jovelina P�rolo/Zeca Pagodinho", - "Milliseconds": 107206, - "Bytes": 3593684, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3155, - "Name": "Sem Essa de Malandro Agulha", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Aldir Blanc/Jayme Vignoli", - "Milliseconds": 158484, - "Bytes": 5332668, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3156, - "Name": "Chico N�o Vai na Corimba", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Dudu Nobre/Zeca Pagodinho", - "Milliseconds": 269374, - "Bytes": 9122188, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3157, - "Name": "Papel Principal", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Almir Guineto/Ded� Paraiso/Luverci Ernesto", - "Milliseconds": 217495, - "Bytes": 7325302, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3158, - "Name": "Saudade Louca", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Acyr Marques/Arlindo Cruz/Franco", - "Milliseconds": 243591, - "Bytes": 8136475, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3159, - "Name": "Camar�o que Dorme e Onda Leva", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Acyi Marques/Arlindo Bruz/Bra�o, Beto Sem/Zeca Pagodinho", - "Milliseconds": 299102, - "Bytes": 10012231, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3160, - "Name": "Sapopemba e Maxambomba", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Nei Lopes/Wilson Moreira", - "Milliseconds": 245394, - "Bytes": 8268712, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3161, - "Name": "Minha F�", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Muril�o", - "Milliseconds": 206994, - "Bytes": 6981474, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3162, - "Name": "Lua de Ogum", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Ratinho/Zeca Pagodinho", - "Milliseconds": 168463, - "Bytes": 5719129, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3163, - "Name": "Samba pras mo�as", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Grazielle/Roque Ferreira", - "Milliseconds": 152816, - "Bytes": 5121366, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 411, - "CustomerId": 44, - "InvoiceDate": "2013-12-14T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 13.86, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3164, - "Name": "Verdade", - "AlbumId": 248, - "MediaTypeId": 1, - "GenreId": 7, - "Composer": "Carlinhos Santana/Nelson Rufino", - "Milliseconds": 332826, - "Bytes": 11120708, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 156, - "Name": "The Office", - "Albums": [ - { - "AlbumId": 249, - "Title": "The Office, Season 1", - "ArtistId": 156, - "Tracks": [ - { - "TrackId": 3172, - "Name": "The Office: An American Workplace (Pilot)", - "AlbumId": 249, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1380833, - "Bytes": 290482361, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3173, - "Name": "Diversity Day", - "AlbumId": 249, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1306416, - "Bytes": 257879716, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3174, - "Name": "Health Care", - "AlbumId": 249, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1321791, - "Bytes": 260493577, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3175, - "Name": "The Alliance", - "AlbumId": 249, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1317125, - "Bytes": 266203162, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3176, - "Name": "Basketball", - "AlbumId": 249, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1323541, - "Bytes": 267464180, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3177, - "Name": "Hot Girl", - "AlbumId": 249, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1325458, - "Bytes": 267836576, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 412, - "CustomerId": 58, - "InvoiceDate": "2013-12-22T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 1.99, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 250, - "Title": "The Office, Season 2", - "ArtistId": 156, - "Tracks": [ - { - "TrackId": 3178, - "Name": "The Dundies", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1253541, - "Bytes": 246845576, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3179, - "Name": "Sexual Harassment", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1294541, - "Bytes": 273069146, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3180, - "Name": "Office Olympics", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1290458, - "Bytes": 256247623, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3181, - "Name": "The Fire", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1288166, - "Bytes": 266856017, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3182, - "Name": "Halloween", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1315333, - "Bytes": 249205209, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3183, - "Name": "The Fight", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1320028, - "Bytes": 277149457, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3184, - "Name": "The Client", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1299341, - "Bytes": 253836788, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3185, - "Name": "Performance Review", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1292458, - "Bytes": 256143822, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3186, - "Name": "Email Surveillance", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1328870, - "Bytes": 265101113, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 306, - "CustomerId": 5, - "InvoiceDate": "2012-09-05T00:00:00Z", - "BillingAddress": "Klanova 9/506", - "BillingCity": "Prague", - "BillingState": null, - "BillingCountry": "Czech Republic", - "BillingPostalCode": "14700", - "Total": 16.86, - "Customer": { - "CustomerId": 5, - "FirstName": "Franti�ek", - "LastName": "Wichterlov�", - "Company": "JetBrains s.r.o.", - "Address": "Klanova 9/506", - "City": "Prague", - "State": null, - "Country": "Czech Republic", - "PostalCode": "14700", - "Phone": "+420 2 4172 5555", - "Fax": "+420 2 4172 5555", - "Email": "frantisekw@jetbrains.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3187, - "Name": "Christmas Party", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1282115, - "Bytes": 260891300, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3188, - "Name": "Booze Cruise", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1267958, - "Bytes": 252518021, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3189, - "Name": "The Injury", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1275275, - "Bytes": 253912762, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3190, - "Name": "The Secret", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1264875, - "Bytes": 253143200, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3191, - "Name": "The Carpet", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1264375, - "Bytes": 256477011, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3192, - "Name": "Boys and Girls", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1278333, - "Bytes": 255245729, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3193, - "Name": "Valentine's Day", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1270375, - "Bytes": 253552710, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3194, - "Name": "Dwight's Speech", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1278041, - "Bytes": 255001728, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3195, - "Name": "Take Your Daughter to Work Day", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1268333, - "Bytes": 253451012, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3196, - "Name": "Michael's Birthday", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1237791, - "Bytes": 247238398, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3197, - "Name": "Drug Testing", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1278625, - "Bytes": 244626927, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3198, - "Name": "Conflict Resolution", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1274583, - "Bytes": 253808658, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3199, - "Name": "Casino Night - Season Finale", - "AlbumId": 250, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1712791, - "Bytes": 327642458, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 251, - "Title": "The Office, Season 3", - "ArtistId": 156, - "Tracks": [ - { - "TrackId": 3200, - "Name": "Gay Witch Hunt", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1326534, - "Bytes": 276942637, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 307, - "CustomerId": 19, - "InvoiceDate": "2012-09-13T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 1.99, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3201, - "Name": "The Convention", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1297213, - "Bytes": 255117055, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 308, - "CustomerId": 20, - "InvoiceDate": "2012-09-26T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 3.98, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3202, - "Name": "The Coup", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1276526, - "Bytes": 267205501, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 308, - "CustomerId": 20, - "InvoiceDate": "2012-09-26T00:00:00Z", - "BillingAddress": "541 Del Medio Avenue", - "BillingCity": "Mountain View", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "94040-111", - "Total": 3.98, - "Customer": { - "CustomerId": 20, - "FirstName": "Dan", - "LastName": "Miller", - "Company": null, - "Address": "541 Del Medio Avenue", - "City": "Mountain View", - "State": "CA", - "Country": "USA", - "PostalCode": "94040-111", - "Phone": "+1 (650) 644-3358", - "Fax": null, - "Email": "dmiller@comcast.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3203, - "Name": "Grief Counseling", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1282615, - "Bytes": 256912833, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3204, - "Name": "The Initiation", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1280113, - "Bytes": 251728257, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 309, - "CustomerId": 22, - "InvoiceDate": "2012-09-26T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 3.98, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3205, - "Name": "Diwali", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1279904, - "Bytes": 252726644, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3206, - "Name": "Branch Closing", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1822781, - "Bytes": 358761786, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 309, - "CustomerId": 22, - "InvoiceDate": "2012-09-26T00:00:00Z", - "BillingAddress": "120 S Orange Ave", - "BillingCity": "Orlando", - "BillingState": "FL", - "BillingCountry": "USA", - "BillingPostalCode": "32801", - "Total": 3.98, - "Customer": { - "CustomerId": 22, - "FirstName": "Heather", - "LastName": "Leacock", - "Company": null, - "Address": "120 S Orange Ave", - "City": "Orlando", - "State": "FL", - "Country": "USA", - "PostalCode": "32801", - "Phone": "+1 (407) 999-7788", - "Fax": null, - "Email": "hleacock@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3207, - "Name": "The Merger", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 1801926, - "Bytes": 345960631, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3208, - "Name": "The Convict", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1273064, - "Bytes": 248863427, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 310, - "CustomerId": 24, - "InvoiceDate": "2012-09-27T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 7.96, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3209, - "Name": "A Benihana Christmas, Pts. 1 \u0026 2", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 2519436, - "Bytes": 515301752, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 201, - "CustomerId": 25, - "InvoiceDate": "2011-05-29T00:00:00Z", - "BillingAddress": "319 N. Frances Street", - "BillingCity": "Madison", - "BillingState": "WI", - "BillingCountry": "USA", - "BillingPostalCode": "53703", - "Total": 18.86, - "Customer": { - "CustomerId": 25, - "FirstName": "Victor", - "LastName": "Stevens", - "Company": null, - "Address": "319 N. Frances Street", - "City": "Madison", - "State": "WI", - "Country": "USA", - "PostalCode": "53703", - "Phone": "+1 (608) 257-0597", - "Fax": null, - "Email": "vstevens@yahoo.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3210, - "Name": "Back from Vacation", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1271688, - "Bytes": 245378749, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 310, - "CustomerId": 24, - "InvoiceDate": "2012-09-27T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 7.96, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3211, - "Name": "Traveling Salesmen", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1289039, - "Bytes": 250822697, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3212, - "Name": "Producer's Cut: The Return", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1700241, - "Bytes": 337219980, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 310, - "CustomerId": 24, - "InvoiceDate": "2012-09-27T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 7.96, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3213, - "Name": "Ben Franklin", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1271938, - "Bytes": 264168080, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3214, - "Name": "Phyllis's Wedding", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1271521, - "Bytes": 258561054, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 310, - "CustomerId": 24, - "InvoiceDate": "2012-09-27T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 7.96, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3215, - "Name": "Business School", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1302093, - "Bytes": 254402605, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3216, - "Name": "Cocktails", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1272522, - "Bytes": 259011909, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3217, - "Name": "The Negotiation", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1767851, - "Bytes": 371663719, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3218, - "Name": "Safety Training", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1271229, - "Bytes": 253054534, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 311, - "CustomerId": 28, - "InvoiceDate": "2012-09-28T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 11.94, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3219, - "Name": "Product Recall", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1268268, - "Bytes": 251208610, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3220, - "Name": "Women's Appreciation", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1732649, - "Bytes": 338778844, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3221, - "Name": "Beach Games", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1676134, - "Bytes": 333671149, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3222, - "Name": "The Job", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 2541875, - "Bytes": 501060138, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 311, - "CustomerId": 28, - "InvoiceDate": "2012-09-28T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 11.94, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3428, - "Name": "Branch Closing", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1814855, - "Bytes": 360331351, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3429, - "Name": "The Return", - "AlbumId": 251, - "MediaTypeId": 3, - "GenreId": 22, - "Composer": null, - "Milliseconds": 1705080, - "Bytes": 343877320, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 22, - "Name": "Comedy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 157, - "Name": "Dread Zeppelin", - "Albums": [ - { - "AlbumId": 252, - "Title": "Un-Led-Ed", - "ArtistId": 157, - "Tracks": [ - { - "TrackId": 3225, - "Name": "Your Time Is Gonna Come", - "AlbumId": 252, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": "Page, Jones", - "Milliseconds": 310774, - "Bytes": 5126563, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 203, - "CustomerId": 40, - "InvoiceDate": "2011-06-19T00:00:00Z", - "BillingAddress": "8, Rue Hanovre", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75002", - "Total": 2.98, - "Customer": { - "CustomerId": 40, - "FirstName": "Dominique", - "LastName": "Lefebvre", - "Company": null, - "Address": "8, Rue Hanovre", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75002", - "Phone": "+33 01 47 42 71 71", - "Fax": null, - "Email": "dominiquelefebvre@gmail.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 158, - "Name": "Battlestar Galactica (Classic)", - "Albums": [ - { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1", - "ArtistId": 158, - "Tracks": [ - { - "TrackId": 3226, - "Name": "Battlestar Galactica, Pt. 1", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2952702, - "Bytes": 541359437, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 311, - "CustomerId": 28, - "InvoiceDate": "2012-09-28T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 11.94, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3227, - "Name": "Battlestar Galactica, Pt. 2", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2956081, - "Bytes": 521387924, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 204, - "CustomerId": 42, - "InvoiceDate": "2011-06-19T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 3.98, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3228, - "Name": "Battlestar Galactica, Pt. 3", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2927802, - "Bytes": 554509033, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3229, - "Name": "Lost Planet of the Gods, Pt. 1", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2922547, - "Bytes": 537812711, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 204, - "CustomerId": 42, - "InvoiceDate": "2011-06-19T00:00:00Z", - "BillingAddress": "9, Place Louis Barthou", - "BillingCity": "Bordeaux", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "33000", - "Total": 3.98, - "Customer": { - "CustomerId": 42, - "FirstName": "Wyatt", - "LastName": "Girard", - "Company": null, - "Address": "9, Place Louis Barthou", - "City": "Bordeaux", - "State": null, - "Country": "France", - "PostalCode": "33000", - "Phone": "+33 05 56 96 96 96", - "Fax": null, - "Email": "wyatt.girard@yahoo.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3230, - "Name": "Lost Planet of the Gods, Pt. 2", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2914664, - "Bytes": 534343985, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 311, - "CustomerId": 28, - "InvoiceDate": "2012-09-28T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 11.94, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3231, - "Name": "The Lost Warrior", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2920045, - "Bytes": 558872190, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 205, - "CustomerId": 44, - "InvoiceDate": "2011-06-20T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 7.96, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3232, - "Name": "The Long Patrol", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2925008, - "Bytes": 513122217, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 96, - "CustomerId": 45, - "InvoiceDate": "2010-02-18T00:00:00Z", - "BillingAddress": "Erzs�bet krt. 58.", - "BillingCity": "Budapest", - "BillingState": null, - "BillingCountry": "Hungary", - "BillingPostalCode": "H-1073", - "Total": 21.86, - "Customer": { - "CustomerId": 45, - "FirstName": "Ladislav", - "LastName": "Kov�cs", - "Company": null, - "Address": "Erzs�bet krt. 58.", - "City": "Budapest", - "State": null, - "Country": "Hungary", - "PostalCode": "H-1073", - "Phone": null, - "Fax": null, - "Email": "ladislav_kovacs@apple.hu", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3233, - "Name": "The Gun On Ice Planet Zero, Pt. 1", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2907615, - "Bytes": 540980196, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 205, - "CustomerId": 44, - "InvoiceDate": "2011-06-20T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 7.96, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3234, - "Name": "The Gun On Ice Planet Zero, Pt. 2", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2924341, - "Bytes": 546542281, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 311, - "CustomerId": 28, - "InvoiceDate": "2012-09-28T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 11.94, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3235, - "Name": "The Magnificent Warriors", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2924716, - "Bytes": 570152232, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 205, - "CustomerId": 44, - "InvoiceDate": "2011-06-20T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 7.96, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3236, - "Name": "The Young Lords", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2863571, - "Bytes": 587051735, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3237, - "Name": "The Living Legend, Pt. 1", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2924507, - "Bytes": 503641007, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 205, - "CustomerId": 44, - "InvoiceDate": "2011-06-20T00:00:00Z", - "BillingAddress": "Porthaninkatu 9", - "BillingCity": "Helsinki", - "BillingState": null, - "BillingCountry": "Finland", - "BillingPostalCode": "00530", - "Total": 7.96, - "Customer": { - "CustomerId": 44, - "FirstName": "Terhi", - "LastName": "H�m�l�inen", - "Company": null, - "Address": "Porthaninkatu 9", - "City": "Helsinki", - "State": null, - "Country": "Finland", - "PostalCode": "00530", - "Phone": "+358 09 870 2000", - "Fax": null, - "Email": "terhi.hamalainen@apple.fi", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3238, - "Name": "The Living Legend, Pt. 2", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2923298, - "Bytes": 515632754, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 311, - "CustomerId": 28, - "InvoiceDate": "2012-09-28T00:00:00Z", - "BillingAddress": "302 S 700 E", - "BillingCity": "Salt Lake City", - "BillingState": "UT", - "BillingCountry": "USA", - "BillingPostalCode": "84102", - "Total": 11.94, - "Customer": { - "CustomerId": 28, - "FirstName": "Julia", - "LastName": "Barnett", - "Company": null, - "Address": "302 S 700 E", - "City": "Salt Lake City", - "State": "UT", - "Country": "USA", - "PostalCode": "84102", - "Phone": "+1 (801) 531-7272", - "Fax": null, - "Email": "jubarnett@gmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3239, - "Name": "Fire In Space", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2926593, - "Bytes": 536784757, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3240, - "Name": "War of the Gods, Pt. 1", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2922630, - "Bytes": 505761343, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3241, - "Name": "War of the Gods, Pt. 2", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2923381, - "Bytes": 487899692, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 206, - "CustomerId": 48, - "InvoiceDate": "2011-06-21T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.94, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3242, - "Name": "The Man With Nine Lives", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2956998, - "Bytes": 577829804, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3243, - "Name": "Murder On the Rising Star", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2935894, - "Bytes": 551759986, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": null - }, - { - "TrackId": 3244, - "Name": "Greetings from Earth, Pt. 1", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2960293, - "Bytes": 536824558, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3245, - "Name": "Greetings from Earth, Pt. 2", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2903778, - "Bytes": 527842860, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 206, - "CustomerId": 48, - "InvoiceDate": "2011-06-21T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.94, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3246, - "Name": "Baltar's Escape", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2922088, - "Bytes": 525564224, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 97, - "CustomerId": 59, - "InvoiceDate": "2010-02-26T00:00:00Z", - "BillingAddress": "3,Raj Bhavan Road", - "BillingCity": "Bangalore", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "560001", - "Total": 1.99, - "Customer": { - "CustomerId": 59, - "FirstName": "Puja", - "LastName": "Srivastava", - "Company": null, - "Address": "3,Raj Bhavan Road", - "City": "Bangalore", - "State": null, - "Country": "India", - "PostalCode": "560001", - "Phone": "+91 080 22289999", - "Fax": null, - "Email": "puja_srivastava@yahoo.in", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3247, - "Name": "Experiment In Terra", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2923548, - "Bytes": 547982556, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 98, - "CustomerId": 1, - "InvoiceDate": "2010-03-11T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 3.98, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3248, - "Name": "Take the Celestra", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2927677, - "Bytes": 512381289, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 98, - "CustomerId": 1, - "InvoiceDate": "2010-03-11T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 3.98, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3249, - "Name": "The Hand of God", - "AlbumId": 253, - "MediaTypeId": 3, - "GenreId": 20, - "Composer": null, - "Milliseconds": 2924007, - "Bytes": 536583079, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 20, - "Name": "Sci Fi \u0026 Fantasy" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 206, - "CustomerId": 48, - "InvoiceDate": "2011-06-21T00:00:00Z", - "BillingAddress": "Lijnbaansgracht 120bg", - "BillingCity": "Amsterdam", - "BillingState": "VV", - "BillingCountry": "Netherlands", - "BillingPostalCode": "1016", - "Total": 8.94, - "Customer": { - "CustomerId": 48, - "FirstName": "Johannes", - "LastName": "Van der Berg", - "Company": null, - "Address": "Lijnbaansgracht 120bg", - "City": "Amsterdam", - "State": "VV", - "Country": "Netherlands", - "PostalCode": "1016", - "Phone": "+31 020 6223130", - "Fax": null, - "Email": "johavanderberg@yahoo.nl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 159, - "Name": "Aquaman", - "Albums": [ - { - "AlbumId": 254, - "Title": "Aquaman", - "ArtistId": 159, - "Tracks": [ - { - "TrackId": 3250, - "Name": "Pilot", - "AlbumId": 254, - "MediaTypeId": 3, - "GenreId": 19, - "Composer": null, - "Milliseconds": 2484567, - "Bytes": 492670102, - "UnitPrice": 1.99, - "Genre": { - "GenreId": 19, - "Name": "TV Shows" - }, - "MediaType": { - "MediaTypeId": 3, - "Name": "Protected MPEG-4 video file" - }, - "Playlists": [ - { - "PlaylistId": 3, - "Name": "TV Shows" - }, - { - "PlaylistId": 10, - "Name": "TV Shows" - } - ], - "Invoices": [ - { - "InvoiceId": 99, - "CustomerId": 3, - "InvoiceDate": "2010-03-11T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 3.98, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 160, - "Name": "Christina Aguilera featuring BigElf", - "Albums": null - }, - { - "ArtistId": 161, - "Name": "Aerosmith \u0026 Sierra Leone's Refugee Allstars", - "Albums": null - }, - { - "ArtistId": 162, - "Name": "Los Lonely Boys", - "Albums": null - }, - { - "ArtistId": 163, - "Name": "Corinne Bailey Rae", - "Albums": null - }, - { - "ArtistId": 164, - "Name": "Dhani Harrison \u0026 Jakob Dylan", - "Albums": null - }, - { - "ArtistId": 165, - "Name": "Jackson Browne", - "Albums": null - }, - { - "ArtistId": 166, - "Name": "Avril Lavigne", - "Albums": null - }, - { - "ArtistId": 167, - "Name": "Big \u0026 Rich", - "Albums": null - }, - { - "ArtistId": 168, - "Name": "Youssou N'Dour", - "Albums": null - }, - { - "ArtistId": 169, - "Name": "Black Eyed Peas", - "Albums": null - }, - { - "ArtistId": 170, - "Name": "Jack Johnson", - "Albums": null - }, - { - "ArtistId": 171, - "Name": "Ben Harper", - "Albums": null - }, - { - "ArtistId": 172, - "Name": "Snow Patrol", - "Albums": null - }, - { - "ArtistId": 173, - "Name": "Matisyahu", - "Albums": null - }, - { - "ArtistId": 174, - "Name": "The Postal Service", - "Albums": null - }, - { - "ArtistId": 175, - "Name": "Jaguares", - "Albums": null - }, - { - "ArtistId": 176, - "Name": "The Flaming Lips", - "Albums": null - }, - { - "ArtistId": 177, - "Name": "Jack's Mannequin \u0026 Mick Fleetwood", - "Albums": null - }, - { - "ArtistId": 178, - "Name": "Regina Spektor", - "Albums": null - }, - { - "ArtistId": 179, - "Name": "Scorpions", - "Albums": [ - { - "AlbumId": 257, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions", - "ArtistId": 179, - "Tracks": [ - { - "TrackId": 3288, - "Name": "Rock You Like a Hurricane", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 255766, - "Bytes": 4300973, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3289, - "Name": "No One Like You", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 240325, - "Bytes": 4050259, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3290, - "Name": "The Zoo", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 332740, - "Bytes": 5550779, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 17, - "Name": "Heavy Metal Classic" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3291, - "Name": "Loving You Sunday Morning", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 339125, - "Bytes": 5654493, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3292, - "Name": "Still Loving You", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 390674, - "Bytes": 6491444, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 312, - "CustomerId": 34, - "InvoiceDate": "2012-10-01T00:00:00Z", - "BillingAddress": "Rua da Assun��o 53", - "BillingCity": "Lisbon", - "BillingState": null, - "BillingCountry": "Portugal", - "BillingPostalCode": null, - "Total": 10.91, - "Customer": { - "CustomerId": 34, - "FirstName": "Jo�o", - "LastName": "Fernandes", - "Company": null, - "Address": "Rua da Assun��o 53", - "City": "Lisbon", - "State": null, - "Country": "Portugal", - "PostalCode": null, - "Phone": "+351 (213) 466-111", - "Fax": null, - "Email": "jfernandes@yahoo.pt", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3293, - "Name": "Big City Nights", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 251865, - "Bytes": 4237651, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3294, - "Name": "Believe in Love", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 325774, - "Bytes": 5437651, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3295, - "Name": "Rhythm of Love", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 231246, - "Bytes": 3902834, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3296, - "Name": "I Can't Explain", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 205332, - "Bytes": 3482099, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3297, - "Name": "Tease Me Please Me", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 287229, - "Bytes": 4811894, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3298, - "Name": "Wind of Change", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 315325, - "Bytes": 5268002, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3299, - "Name": "Send Me an Angel", - "AlbumId": 257, - "MediaTypeId": 2, - "GenreId": 1, - "Composer": null, - "Milliseconds": 273041, - "Bytes": 4581492, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 180, - "Name": "House Of Pain", - "Albums": [ - { - "AlbumId": 258, - "Title": "House of Pain", - "ArtistId": 180, - "Tracks": [ - { - "TrackId": 3300, - "Name": "Jump Around", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Muggerud", - "Milliseconds": 217835, - "Bytes": 8715653, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3301, - "Name": "Salutations", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Dimant", - "Milliseconds": 69120, - "Bytes": 2767047, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3302, - "Name": "Put Your Head Out", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Freese/L. Muggerud", - "Milliseconds": 182230, - "Bytes": 7291473, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3303, - "Name": "Top O' The Morning To Ya", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Dimant", - "Milliseconds": 216633, - "Bytes": 8667599, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3304, - "Name": "Commercial 1", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "L. Muggerud", - "Milliseconds": 7941, - "Bytes": 319888, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3305, - "Name": "House And The Rising Sun", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/J. Vasquez/L. Dimant", - "Milliseconds": 219402, - "Bytes": 8778369, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3306, - "Name": "Shamrocks And Shenanigans", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Dimant", - "Milliseconds": 218331, - "Bytes": 8735518, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3307, - "Name": "House Of Pain Anthem", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Dimant", - "Milliseconds": 155611, - "Bytes": 6226713, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3308, - "Name": "Danny Boy, Danny Boy", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Muggerud", - "Milliseconds": 114520, - "Bytes": 4583091, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3309, - "Name": "Guess Who's Back", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Muggerud", - "Milliseconds": 238393, - "Bytes": 9537994, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3310, - "Name": "Commercial 2", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "L. Muggerud", - "Milliseconds": 21211, - "Bytes": 850698, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3311, - "Name": "Put On Your Shit Kickers", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Muggerud", - "Milliseconds": 190432, - "Bytes": 7619569, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3312, - "Name": "Come And Get Some Of This", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Muggerud/R. Medrano", - "Milliseconds": 170475, - "Bytes": 6821279, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3313, - "Name": "Life Goes On", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/R. Medrano", - "Milliseconds": 163030, - "Bytes": 6523458, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3314, - "Name": "One For The Road", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Dimant/L. Muggerud", - "Milliseconds": 170213, - "Bytes": 6810820, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 102, - "CustomerId": 15, - "InvoiceDate": "2010-03-16T00:00:00Z", - "BillingAddress": "700 W Pender Street", - "BillingCity": "Vancouver", - "BillingState": "BC", - "BillingCountry": "Canada", - "BillingPostalCode": "V6C 1G8", - "Total": 9.91, - "Customer": { - "CustomerId": 15, - "FirstName": "Jennifer", - "LastName": "Peterson", - "Company": "Rogers Canada", - "Address": "700 W Pender Street", - "City": "Vancouver", - "State": "BC", - "Country": "Canada", - "PostalCode": "V6C 1G8", - "Phone": "+1 (604) 688-2255", - "Fax": "+1 (604) 688-8756", - "Email": "jenniferp@rogers.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3315, - "Name": "Feel It", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/R. Medrano", - "Milliseconds": 239908, - "Bytes": 9598588, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 207, - "CustomerId": 54, - "InvoiceDate": "2011-06-24T00:00:00Z", - "BillingAddress": "110 Raeburn Pl", - "BillingCity": "Edinburgh", - "BillingState": null, - "BillingCountry": "United Kingdom", - "BillingPostalCode": "EH4 1HH", - "Total": 8.91, - "Customer": { - "CustomerId": 54, - "FirstName": "Steve", - "LastName": "Murray", - "Company": null, - "Address": "110 Raeburn Pl", - "City": "Edinburgh", - "State": null, - "Country": "United Kingdom", - "PostalCode": "EH4 1HH", - "Phone": "+44 0131 315 3300", - "Fax": null, - "Email": "steve.murray@yahoo.uk", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3316, - "Name": "All My Love", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Dimant", - "Milliseconds": 200620, - "Bytes": 8027065, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3317, - "Name": "Jump Around (Pete Rock Remix)", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Muggerud", - "Milliseconds": 236120, - "Bytes": 9447101, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3318, - "Name": "Shamrocks And Shenanigans (Boom Shalock Lock Boom/Butch Vig Mix)", - "AlbumId": 258, - "MediaTypeId": 1, - "GenreId": 17, - "Composer": "E. Schrody/L. Dimant", - "Milliseconds": 237035, - "Bytes": 9483705, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 17, - "Name": "Hip Hop/Rap" - }, - "MediaType": { - "MediaTypeId": 1, - "Name": "MPEG audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 181, - "Name": "Xis", - "Albums": null - }, - { - "ArtistId": 182, - "Name": "Nega Gizza", - "Albums": null - }, - { - "ArtistId": 183, - "Name": "Gustavo \u0026 Andres Veiga \u0026 Salazar", - "Albums": null - }, - { - "ArtistId": 184, - "Name": "Rodox", - "Albums": null - }, - { - "ArtistId": 185, - "Name": "Charlie Brown Jr.", - "Albums": null - }, - { - "ArtistId": 186, - "Name": "Pedro Lu�s E A Parede", - "Albums": null - }, - { - "ArtistId": 187, - "Name": "Los Hermanos", - "Albums": null - }, - { - "ArtistId": 188, - "Name": "Mundo Livre S/A", - "Albums": null - }, - { - "ArtistId": 189, - "Name": "Otto", - "Albums": null - }, - { - "ArtistId": 190, - "Name": "Instituto", - "Albums": null - }, - { - "ArtistId": 191, - "Name": "Na��o Zumbi", - "Albums": null - }, - { - "ArtistId": 192, - "Name": "DJ Dolores \u0026 Orchestra Santa Massa", - "Albums": null - }, - { - "ArtistId": 193, - "Name": "Seu Jorge", - "Albums": null - }, - { - "ArtistId": 194, - "Name": "Sabotage E Instituto", - "Albums": null - }, - { - "ArtistId": 195, - "Name": "Stereo Maracana", - "Albums": null - }, - { - "ArtistId": 196, - "Name": "Cake", - "Albums": [ - { - "AlbumId": 260, - "Title": "Cake: B-Sides and Rarities", - "ArtistId": 196, - "Tracks": [ - { - "TrackId": 3336, - "Name": "War Pigs", - "AlbumId": 260, - "MediaTypeId": 4, - "GenreId": 23, - "Composer": null, - "Milliseconds": 234013, - "Bytes": 8052374, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 4, - "Name": "Purchased AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 197, - "Name": "Aisha Duo", - "Albums": [ - { - "AlbumId": 262, - "Title": "Quiet Songs", - "ArtistId": 197, - "Tracks": [ - { - "TrackId": 3349, - "Name": "Amanda", - "AlbumId": 262, - "MediaTypeId": 5, - "GenreId": 2, - "Composer": "Luca Gusella", - "Milliseconds": 246503, - "Bytes": 4011615, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3350, - "Name": "Despertar", - "AlbumId": 262, - "MediaTypeId": 5, - "GenreId": 2, - "Composer": "Andrea Dulbecco", - "Milliseconds": 307385, - "Bytes": 4821485, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 198, - "Name": "Habib Koit� and Bamada", - "Albums": [ - { - "AlbumId": 263, - "Title": "Muso Ko", - "ArtistId": 198, - "Tracks": [ - { - "TrackId": 3351, - "Name": "Din Din Wo (Little Child)", - "AlbumId": 263, - "MediaTypeId": 5, - "GenreId": 16, - "Composer": "Habib Koit�", - "Milliseconds": 285837, - "Bytes": 4615841, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3354, - "Name": "I Ka Barra (Your Work)", - "AlbumId": 263, - "MediaTypeId": 5, - "GenreId": 16, - "Composer": "Habib Koit�", - "Milliseconds": 300605, - "Bytes": 4855457, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 16, - "Name": "World" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 199, - "Name": "Karsh Kale", - "Albums": [ - { - "AlbumId": 264, - "Title": "Realize", - "ArtistId": 199, - "Tracks": [ - { - "TrackId": 3352, - "Name": "Distance", - "AlbumId": 264, - "MediaTypeId": 5, - "GenreId": 15, - "Composer": "Karsh Kale/Vishal Vaid", - "Milliseconds": 327122, - "Bytes": 5327463, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3358, - "Name": "One Step Beyond", - "AlbumId": 264, - "MediaTypeId": 5, - "GenreId": 15, - "Composer": "Karsh Kale", - "Milliseconds": 366085, - "Bytes": 6034098, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 15, - "Name": "Electronica/Dance" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 200, - "Name": "The Posies", - "Albums": [ - { - "AlbumId": 265, - "Title": "Every Kind of Light", - "ArtistId": 200, - "Tracks": [ - { - "TrackId": 3353, - "Name": "I Guess You're Right", - "AlbumId": 265, - "MediaTypeId": 5, - "GenreId": 1, - "Composer": "Darius \"Take One\" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris", - "Milliseconds": 212044, - "Bytes": 3453849, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3355, - "Name": "Love Comes", - "AlbumId": 265, - "MediaTypeId": 5, - "GenreId": 1, - "Composer": "Darius \"Take One\" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris", - "Milliseconds": 199923, - "Bytes": 3240609, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 1, - "Name": "Rock" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 201, - "Name": "Luciana Souza/Romero Lubambo", - "Albums": [ - { - "AlbumId": 266, - "Title": "Duos II", - "ArtistId": 201, - "Tracks": [ - { - "TrackId": 3356, - "Name": "Muita Bobeira", - "AlbumId": 266, - "MediaTypeId": 5, - "GenreId": 7, - "Composer": "Luciana Souza", - "Milliseconds": 172710, - "Bytes": 2775071, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 7, - "Name": "Latin" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 202, - "Name": "Aaron Goldberg", - "Albums": [ - { - "AlbumId": 267, - "Title": "Worlds", - "ArtistId": 202, - "Tracks": [ - { - "TrackId": 3357, - "Name": "OAM's Blues", - "AlbumId": 267, - "MediaTypeId": 5, - "GenreId": 2, - "Composer": "Aaron Goldberg", - "Milliseconds": 266936, - "Bytes": 4292028, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 2, - "Name": "Jazz" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 203, - "Name": "Nicolaus Esterhazy Sinfonia", - "Albums": [ - { - "AlbumId": 268, - "Title": "The Best of Beethoven", - "ArtistId": 203, - "Tracks": [ - { - "TrackId": 3359, - "Name": "Symphony No. 3 in E-flat major, Op. 55, \"Eroica\" - Scherzo: Allegro Vivace", - "AlbumId": 268, - "MediaTypeId": 5, - "GenreId": 24, - "Composer": "Ludwig van Beethoven", - "Milliseconds": 356426, - "Bytes": 5817216, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 5, - "Name": "AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 204, - "Name": "Temple of the Dog", - "Albums": [ - { - "AlbumId": 269, - "Title": "Temple of the Dog", - "ArtistId": 204, - "Tracks": [ - { - "TrackId": 3365, - "Name": "Say Hello 2 Heaven", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 384497, - "Bytes": 6477217, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3366, - "Name": "Reach Down", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 672773, - "Bytes": 11157785, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3367, - "Name": "Hunger Strike", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 246292, - "Bytes": 4233212, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 16, - "Name": "Grunge" - } - ], - "Invoices": null - }, - { - "TrackId": 3368, - "Name": "Pushin Forward Back", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 225278, - "Bytes": 3892066, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3369, - "Name": "Call Me a Dog", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 304458, - "Bytes": 5177612, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3370, - "Name": "Times of Trouble", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 342539, - "Bytes": 5795951, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3371, - "Name": "Wooden Jesus", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 250565, - "Bytes": 4302603, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3372, - "Name": "Your Savior", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 244226, - "Bytes": 4199626, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3373, - "Name": "Four Walled World", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 414474, - "Bytes": 6964048, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3374, - "Name": "All Night Thing", - "AlbumId": 269, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 231803, - "Bytes": 3997982, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 205, - "Name": "Chris Cornell", - "Albums": [ - { - "AlbumId": 270, - "Title": "Carry On", - "ArtistId": 205, - "Tracks": [ - { - "TrackId": 3375, - "Name": "No Such Thing", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 224837, - "Bytes": 3691272, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3376, - "Name": "Poison Eye", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 237120, - "Bytes": 3890037, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3377, - "Name": "Arms Around Your Love", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 214016, - "Bytes": 3516224, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3378, - "Name": "Safe and Sound", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 256764, - "Bytes": 4207769, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3379, - "Name": "She'll Never Be Your Man", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 204078, - "Bytes": 3355715, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3380, - "Name": "Ghosts", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 231547, - "Bytes": 3799745, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3381, - "Name": "Killing Birds", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 218498, - "Bytes": 3588776, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3382, - "Name": "Billie Jean", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Michael Jackson", - "Milliseconds": 281401, - "Bytes": 4606408, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3383, - "Name": "Scar On the Sky", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 220193, - "Bytes": 3616618, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3384, - "Name": "Your Soul Today", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 205959, - "Bytes": 3385722, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3385, - "Name": "Finally Forever", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 217035, - "Bytes": 3565098, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3386, - "Name": "Silence the Voices", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 267376, - "Bytes": 4379597, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3387, - "Name": "Disappearing Act", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 273320, - "Bytes": 4476203, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3388, - "Name": "You Know My Name", - "AlbumId": 270, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": "Chris Cornell", - "Milliseconds": 240255, - "Bytes": 3940651, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 206, - "Name": "Alberto Turco \u0026 Nova Schola Gregoriana", - "Albums": [ - { - "AlbumId": 272, - "Title": "Adorate Deum: Gregorian Chant from the Proper of the Mass", - "ArtistId": 206, - "Tracks": [ - { - "TrackId": 3403, - "Name": "Intoitus: Adorate Deum", - "AlbumId": 272, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Anonymous", - "Milliseconds": 245317, - "Bytes": 4123531, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 207, - "Name": "Richard Marlow \u0026 The Choir of Trinity College, Cambridge", - "Albums": [ - { - "AlbumId": 273, - "Title": "Allegri: Miserere", - "ArtistId": 207, - "Tracks": [ - { - "TrackId": 3404, - "Name": "Miserere mei, Deus", - "AlbumId": 273, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Gregorio Allegri", - "Milliseconds": 501503, - "Bytes": 8285941, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 208, - "Name": "English Concert \u0026 Trevor Pinnock", - "Albums": [ - { - "AlbumId": 274, - "Title": "Pachelbel: Canon \u0026 Gigue", - "ArtistId": 208, - "Tracks": [ - { - "TrackId": 3405, - "Name": "Canon and Gigue in D Major: I. Canon", - "AlbumId": 274, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Pachelbel", - "Milliseconds": 271788, - "Bytes": 4438393, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 315, - "Title": "Handel: Music for the Royal Fireworks (Original Version 1749)", - "ArtistId": 208, - "Tracks": [ - { - "TrackId": 3449, - "Name": "Music for the Royal Fireworks, HWV351 (1749): La R�jouissance", - "AlbumId": 315, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "George Frideric Handel", - "Milliseconds": 120000, - "Bytes": 2193734, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 209, - "Name": "Anne-Sophie Mutter, Herbert Von Karajan \u0026 Wiener Philharmoniker", - "Albums": [ - { - "AlbumId": 275, - "Title": "Vivaldi: The Four Seasons", - "ArtistId": 209, - "Tracks": [ - { - "TrackId": 3406, - "Name": "Concerto No. 1 in E Major, RV 269 \"Spring\": I. Allegro", - "AlbumId": 275, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Antonio Vivaldi", - "Milliseconds": 199086, - "Bytes": 3347810, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 210, - "Name": "Hilary Hahn, Jeffrey Kahane, Los Angeles Chamber Orchestra \u0026 Margaret Batjer", - "Albums": [ - { - "AlbumId": 276, - "Title": "Bach: Violin Concertos", - "ArtistId": 210, - "Tracks": [ - { - "TrackId": 3407, - "Name": "Concerto for 2 Violins in D Minor, BWV 1043: I. Vivace", - "AlbumId": 276, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Sebastian Bach", - "Milliseconds": 193722, - "Bytes": 3192890, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 211, - "Name": "Wilhelm Kempff", - "Albums": [ - { - "AlbumId": 277, - "Title": "Bach: Goldberg Variations", - "ArtistId": 211, - "Tracks": [ - { - "TrackId": 3408, - "Name": "Aria Mit 30 Ver�nderungen, BWV 988 \"Goldberg Variations\": Aria", - "AlbumId": 277, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Sebastian Bach", - "Milliseconds": 120463, - "Bytes": 2081895, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 212, - "Name": "Yo-Yo Ma", - "Albums": [ - { - "AlbumId": 278, - "Title": "Bach: The Cello Suites", - "ArtistId": 212, - "Tracks": [ - { - "TrackId": 3409, - "Name": "Suite for Solo Cello No. 1 in G Major, BWV 1007: I. Pr�lude", - "AlbumId": 278, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Sebastian Bach", - "Milliseconds": 143288, - "Bytes": 2315495, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 213, - "Name": "Scholars Baroque Ensemble", - "Albums": [ - { - "AlbumId": 279, - "Title": "Handel: The Messiah (Highlights)", - "ArtistId": 213, - "Tracks": [ - { - "TrackId": 3410, - "Name": "The Messiah: Behold, I Tell You a Mystery... The Trumpet Shall Sound", - "AlbumId": 279, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "George Frideric Handel", - "Milliseconds": 582029, - "Bytes": 9553140, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 214, - "Name": "Academy of St. Martin in the Fields \u0026 Sir Neville Marriner", - "Albums": [ - { - "AlbumId": 280, - "Title": "The World of Classical Favourites", - "ArtistId": 214, - "Tracks": [ - { - "TrackId": 3411, - "Name": "Solomon HWV 67: The Arrival of the Queen of Sheba", - "AlbumId": 280, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "George Frideric Handel", - "Milliseconds": 197135, - "Bytes": 3247914, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - }, - { - "TrackId": 3438, - "Name": "Fantasia On Greensleeves", - "AlbumId": 280, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Ralph Vaughan Williams", - "Milliseconds": 268066, - "Bytes": 4513190, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 316, - "CustomerId": 1, - "InvoiceDate": "2012-10-27T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 1.98, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 215, - "Name": "Academy of St. Martin in the Fields Chamber Ensemble \u0026 Sir Neville Marriner", - "Albums": [ - { - "AlbumId": 281, - "Title": "Sir Neville Marriner: A Celebration", - "ArtistId": 215, - "Tracks": [ - { - "TrackId": 3412, - "Name": "\"Eine Kleine Nachtmusik\" Serenade In G, K. 525: I. Allegro", - "AlbumId": 281, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Wolfgang Amadeus Mozart", - "Milliseconds": 348971, - "Bytes": 5760129, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 216, - "Name": "Berliner Philharmoniker, Claudio Abbado \u0026 Sabine Meyer", - "Albums": [ - { - "AlbumId": 282, - "Title": "Mozart: Wind Concertos", - "ArtistId": 216, - "Tracks": [ - { - "TrackId": 3413, - "Name": "Concerto for Clarinet in A Major, K. 622: II. Adagio", - "AlbumId": 282, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Wolfgang Amadeus Mozart", - "Milliseconds": 394482, - "Bytes": 6474980, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 217, - "Name": "Royal Philharmonic Orchestra \u0026 Sir Thomas Beecham", - "Albums": [ - { - "AlbumId": 283, - "Title": "Haydn: Symphonies 99 - 104", - "ArtistId": 217, - "Tracks": [ - { - "TrackId": 3414, - "Name": "Symphony No. 104 in D Major \"London\": IV. Finale: Spiritoso", - "AlbumId": 283, - "MediaTypeId": 4, - "GenreId": 24, - "Composer": "Franz Joseph Haydn", - "Milliseconds": 306687, - "Bytes": 10085867, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 4, - "Name": "Purchased AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 218, - "Name": "Orchestre R�volutionnaire et Romantique \u0026 John Eliot Gardiner", - "Albums": [ - { - "AlbumId": 284, - "Title": "Beethoven: Symhonies Nos. 5 \u0026 6", - "ArtistId": 218, - "Tracks": [ - { - "TrackId": 3415, - "Name": "Symphony No.5 in C Minor: I. Allegro con brio", - "AlbumId": 284, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Ludwig van Beethoven", - "Milliseconds": 392462, - "Bytes": 6419730, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 219, - "Name": "Britten Sinfonia, Ivor Bolton \u0026 Lesley Garrett", - "Albums": [ - { - "AlbumId": 285, - "Title": "A Soprano Inspired", - "ArtistId": 219, - "Tracks": [ - { - "TrackId": 3416, - "Name": "Ave Maria", - "AlbumId": 285, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Franz Schubert", - "Milliseconds": 338243, - "Bytes": 5605648, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 220, - "Name": "Chicago Symphony Chorus, Chicago Symphony Orchestra \u0026 Sir Georg Solti", - "Albums": [ - { - "AlbumId": 286, - "Title": "Great Opera Choruses", - "ArtistId": 220, - "Tracks": [ - { - "TrackId": 3417, - "Name": "Nabucco: Chorus, \"Va, Pensiero, Sull'ali Dorate\"", - "AlbumId": 286, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Giuseppe Verdi", - "Milliseconds": 274504, - "Bytes": 4498583, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 221, - "Name": "Sir Georg Solti \u0026 Wiener Philharmoniker", - "Albums": [ - { - "AlbumId": 287, - "Title": "Wagner: Favourite Overtures", - "ArtistId": 221, - "Tracks": [ - { - "TrackId": 3418, - "Name": "Die Walk�re: The Ride of the Valkyries", - "AlbumId": 287, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Richard Wagner", - "Milliseconds": 189008, - "Bytes": 3114209, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": [ - { - "InvoiceId": 313, - "CustomerId": 43, - "InvoiceDate": "2012-10-06T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 16.86, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 222, - "Name": "Academy of St. Martin in the Fields, John Birch, Sir Neville Marriner \u0026 Sylvia McNair", - "Albums": [ - { - "AlbumId": 288, - "Title": "Faur�: Requiem, Ravel: Pavane \u0026 Others", - "ArtistId": 222, - "Tracks": [ - { - "TrackId": 3419, - "Name": "Requiem, Op.48: 4. Pie Jesu", - "AlbumId": 288, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Gabriel Faur�", - "Milliseconds": 258924, - "Bytes": 4314850, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 223, - "Name": "London Symphony Orchestra \u0026 Sir Charles Mackerras", - "Albums": [ - { - "AlbumId": 289, - "Title": "Tchaikovsky: The Nutcracker", - "ArtistId": 223, - "Tracks": [ - { - "TrackId": 3420, - "Name": "The Nutcracker, Op. 71a, Act II: Scene 14: Pas de deux: Dance of the Prince \u0026 the Sugar-Plum Fairy", - "AlbumId": 289, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Peter Ilyich Tchaikovsky", - "Milliseconds": 304226, - "Bytes": 5184289, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 224, - "Name": "Barry Wordsworth \u0026 BBC Concert Orchestra", - "Albums": [ - { - "AlbumId": 290, - "Title": "The Last Night of the Proms", - "ArtistId": 224, - "Tracks": [ - { - "TrackId": 3421, - "Name": "Nimrod (Adagio) from Variations On an Original Theme, Op. 36 \"Enigma\"", - "AlbumId": 290, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Edward Elgar", - "Milliseconds": 250031, - "Bytes": 4124707, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 225, - "Name": "Herbert Von Karajan, Mirella Freni \u0026 Wiener Philharmoniker", - "Albums": [ - { - "AlbumId": 291, - "Title": "Puccini: Madama Butterfly - Highlights", - "ArtistId": 225, - "Tracks": [ - { - "TrackId": 3422, - "Name": "Madama Butterfly: Un Bel D� Vedremo", - "AlbumId": 291, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Giacomo Puccini", - "Milliseconds": 277639, - "Bytes": 4588197, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 226, - "Name": "Eugene Ormandy", - "Albums": [ - { - "AlbumId": 292, - "Title": "Holst: The Planets, Op. 32 \u0026 Vaughan Williams: Fantasies", - "ArtistId": 226, - "Tracks": [ - { - "TrackId": 3423, - "Name": "Jupiter, the Bringer of Jollity", - "AlbumId": 292, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Gustav Holst", - "Milliseconds": 522099, - "Bytes": 8547876, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 311, - "Title": "Strauss: Waltzes", - "ArtistId": 226, - "Tracks": [ - { - "TrackId": 3445, - "Name": "On the Beautiful Blue Danube", - "AlbumId": 311, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Strauss II", - "Milliseconds": 526696, - "Bytes": 8610225, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - }, - { - "AlbumId": 343, - "Title": "Respighi:Pines of Rome", - "ArtistId": 226, - "Tracks": [ - { - "TrackId": 3499, - "Name": "Pini Di Roma (Pinien Von Rom) \\ I Pini Della Via Appia", - "AlbumId": 343, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": null, - "Milliseconds": 286741, - "Bytes": 4718950, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 214, - "CustomerId": 33, - "InvoiceDate": "2011-07-25T00:00:00Z", - "BillingAddress": "5112 48 Street", - "BillingCity": "Yellowknife", - "BillingState": "NT", - "BillingCountry": "Canada", - "BillingPostalCode": "X1A 1N6", - "Total": 8.91, - "Customer": { - "CustomerId": 33, - "FirstName": "Ellie", - "LastName": "Sullivan", - "Company": null, - "Address": "5112 48 Street", - "City": "Yellowknife", - "State": "NT", - "Country": "Canada", - "PostalCode": "X1A 1N6", - "Phone": "+1 (867) 920-2233", - "Fax": null, - "Email": "ellie.sullivan@shaw.ca", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 227, - "Name": "Luciano Pavarotti", - "Albums": [ - { - "AlbumId": 293, - "Title": "Pavarotti's Opera Made Easy", - "ArtistId": 227, - "Tracks": [ - { - "TrackId": 3424, - "Name": "Turandot, Act III, Nessun dorma!", - "AlbumId": 293, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Giacomo Puccini", - "Milliseconds": 176911, - "Bytes": 2920890, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 228, - "Name": "Leonard Bernstein \u0026 New York Philharmonic", - "Albums": [ - { - "AlbumId": 294, - "Title": "Great Performances - Barber's Adagio and Other Romantic Favorites for Strings", - "ArtistId": 228, - "Tracks": [ - { - "TrackId": 3425, - "Name": "Adagio for Strings from the String Quartet, Op. 11", - "AlbumId": 294, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Samuel Barber", - "Milliseconds": 596519, - "Bytes": 9585597, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 229, - "Name": "Boston Symphony Orchestra \u0026 Seiji Ozawa", - "Albums": [ - { - "AlbumId": 295, - "Title": "Carmina Burana", - "ArtistId": 229, - "Tracks": [ - { - "TrackId": 3426, - "Name": "Carmina Burana: O Fortuna", - "AlbumId": 295, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Carl Orff", - "Milliseconds": 156710, - "Bytes": 2630293, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 230, - "Name": "Aaron Copland \u0026 London Symphony Orchestra", - "Albums": [ - { - "AlbumId": 296, - "Title": "A Copland Celebration, Vol. I", - "ArtistId": 230, - "Tracks": [ - { - "TrackId": 3427, - "Name": "Fanfare for the Common Man", - "AlbumId": 296, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Aaron Copland", - "Milliseconds": 198064, - "Bytes": 3211245, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 15, - "Name": "Classical 101 - The Basics" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 231, - "Name": "Ton Koopman", - "Albums": [ - { - "AlbumId": 297, - "Title": "Bach: Toccata \u0026 Fugue in D Minor", - "ArtistId": 231, - "Tracks": [ - { - "TrackId": 3430, - "Name": "Toccata and Fugue in D Minor, BWV 565: I. Toccata", - "AlbumId": 297, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Sebastian Bach", - "Milliseconds": 153901, - "Bytes": 2649938, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 232, - "Name": "Sergei Prokofiev \u0026 Yuri Temirkanov", - "Albums": [ - { - "AlbumId": 298, - "Title": "Prokofiev: Symphony No.1", - "ArtistId": 232, - "Tracks": [ - { - "TrackId": 3431, - "Name": "Symphony No.1 in D Major, Op.25 \"Classical\", Allegro Con Brio", - "AlbumId": 298, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Sergei Prokofiev", - "Milliseconds": 254001, - "Bytes": 4195542, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 233, - "Name": "Chicago Symphony Orchestra \u0026 Fritz Reiner", - "Albums": [ - { - "AlbumId": 299, - "Title": "Scheherazade", - "ArtistId": 233, - "Tracks": [ - { - "TrackId": 3432, - "Name": "Scheherazade, Op. 35: I. The Sea and Sindbad's Ship", - "AlbumId": 299, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Nikolai Rimsky-Korsakov", - "Milliseconds": 545203, - "Bytes": 8916313, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 314, - "CustomerId": 57, - "InvoiceDate": "2012-10-14T00:00:00Z", - "BillingAddress": "Calle Lira, 198", - "BillingCity": "Santiago", - "BillingState": null, - "BillingCountry": "Chile", - "BillingPostalCode": null, - "Total": 0.99, - "Customer": { - "CustomerId": 57, - "FirstName": "Luis", - "LastName": "Rojas", - "Company": null, - "Address": "Calle Lira, 198", - "City": "Santiago", - "State": null, - "Country": "Chile", - "PostalCode": null, - "Phone": "+56 (0)2 635 4444", - "Fax": null, - "Email": "luisrojas@yahoo.cl", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 234, - "Name": "Orchestra of The Age of Enlightenment", - "Albums": [ - { - "AlbumId": 300, - "Title": "Bach: The Brandenburg Concertos", - "ArtistId": 234, - "Tracks": [ - { - "TrackId": 3433, - "Name": "Concerto No.2 in F Major, BWV1047, I. Allegro", - "AlbumId": 300, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Sebastian Bach", - "Milliseconds": 307244, - "Bytes": 5064553, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 315, - "CustomerId": 58, - "InvoiceDate": "2012-10-27T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 1.98, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 235, - "Name": "Emanuel Ax, Eugene Ormandy \u0026 Philadelphia Orchestra", - "Albums": [ - { - "AlbumId": 301, - "Title": "Chopin: Piano Concertos Nos. 1 \u0026 2", - "ArtistId": 235, - "Tracks": [ - { - "TrackId": 3434, - "Name": "Concerto for Piano No. 2 in F Minor, Op. 21: II. Larghetto", - "AlbumId": 301, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Fr�d�ric Chopin", - "Milliseconds": 560342, - "Bytes": 9160082, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 315, - "CustomerId": 58, - "InvoiceDate": "2012-10-27T00:00:00Z", - "BillingAddress": "12,Community Centre", - "BillingCity": "Delhi", - "BillingState": null, - "BillingCountry": "India", - "BillingPostalCode": "110017", - "Total": 1.98, - "Customer": { - "CustomerId": 58, - "FirstName": "Manoj", - "LastName": "Pareek", - "Company": null, - "Address": "12,Community Centre", - "City": "Delhi", - "State": null, - "Country": "India", - "PostalCode": "110017", - "Phone": "+91 0124 39883988", - "Fax": null, - "Email": "manoj.pareek@rediff.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 236, - "Name": "James Levine", - "Albums": [ - { - "AlbumId": 302, - "Title": "Mascagni: Cavalleria Rusticana", - "ArtistId": 236, - "Tracks": [ - { - "TrackId": 3435, - "Name": "Cavalleria Rusticana \\ Act \\ Intermezzo Sinfonico", - "AlbumId": 302, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Pietro Mascagni", - "Milliseconds": 243436, - "Bytes": 4001276, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 237, - "Name": "Berliner Philharmoniker \u0026 Hans Rosbaud", - "Albums": [ - { - "AlbumId": 303, - "Title": "Sibelius: Finlandia", - "ArtistId": 237, - "Tracks": [ - { - "TrackId": 3436, - "Name": "Karelia Suite, Op.11: 2. Ballade (Tempo Di Menuetto)", - "AlbumId": 303, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Jean Sibelius", - "Milliseconds": 406000, - "Bytes": 5908455, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 316, - "CustomerId": 1, - "InvoiceDate": "2012-10-27T00:00:00Z", - "BillingAddress": "Av. Brigadeiro Faria Lima, 2170", - "BillingCity": "S�o Jos� dos Campos", - "BillingState": "SP", - "BillingCountry": "Brazil", - "BillingPostalCode": "12227-000", - "Total": 1.98, - "Customer": { - "CustomerId": 1, - "FirstName": "Lu�s", - "LastName": "Gon�alves", - "Company": "Embraer - Empresa Brasileira de Aeron�utica S.A.", - "Address": "Av. Brigadeiro Faria Lima, 2170", - "City": "S�o Jos� dos Campos", - "State": "SP", - "Country": "Brazil", - "PostalCode": "12227-000", - "Phone": "+55 (12) 3923-5555", - "Fax": "+55 (12) 3923-5566", - "Email": "luisg@embraer.com.br", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 238, - "Name": "Maurizio Pollini", - "Albums": [ - { - "AlbumId": 304, - "Title": "Beethoven Piano Sonatas: Moonlight \u0026 Pastorale", - "ArtistId": 238, - "Tracks": [ - { - "TrackId": 3437, - "Name": "Piano Sonata No. 14 in C Sharp Minor, Op. 27, No. 2, \"Moonlight\": I. Adagio sostenuto", - "AlbumId": 304, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Ludwig van Beethoven", - "Milliseconds": 391000, - "Bytes": 6318740, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 239, - "Name": "Academy of St. Martin in the Fields, Sir Neville Marriner \u0026 William Bennett", - "Albums": null - }, - { - "ArtistId": 240, - "Name": "Gustav Mahler", - "Albums": [ - { - "AlbumId": 305, - "Title": "Great Recordings of the Century - Mahler: Das Lied von der Erde", - "ArtistId": 240, - "Tracks": [ - { - "TrackId": 3439, - "Name": "Das Lied Von Der Erde, Von Der Jugend", - "AlbumId": 305, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Gustav Mahler", - "Milliseconds": 223583, - "Bytes": 3700206, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 241, - "Name": "Felix Schmidt, London Symphony Orchestra \u0026 Rafael Fr�hbeck de Burgos", - "Albums": [ - { - "AlbumId": 306, - "Title": "Elgar: Cello Concerto \u0026 Vaughan Williams: Fantasias", - "ArtistId": 241, - "Tracks": [ - { - "TrackId": 3440, - "Name": "Concerto for Cello and Orchestra in E minor, Op. 85: I. Adagio - Moderato", - "AlbumId": 306, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Edward Elgar", - "Milliseconds": 483133, - "Bytes": 7865479, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 317, - "CustomerId": 3, - "InvoiceDate": "2012-10-28T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 3.96, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 242, - "Name": "Edo de Waart \u0026 San Francisco Symphony", - "Albums": [ - { - "AlbumId": 307, - "Title": "Adams, John: The Chairman Dances", - "ArtistId": 242, - "Tracks": [ - { - "TrackId": 3441, - "Name": "Two Fanfares for Orchestra: II. Short Ride in a Fast Machine", - "AlbumId": 307, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "John Adams", - "Milliseconds": 254930, - "Bytes": 4310896, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 208, - "CustomerId": 4, - "InvoiceDate": "2011-06-29T00:00:00Z", - "BillingAddress": "Ullev�lsveien 14", - "BillingCity": "Oslo", - "BillingState": null, - "BillingCountry": "Norway", - "BillingPostalCode": "0171", - "Total": 15.86, - "Customer": { - "CustomerId": 4, - "FirstName": "Bj�rn", - "LastName": "Hansen", - "Company": null, - "Address": "Ullev�lsveien 14", - "City": "Oslo", - "State": null, - "Country": "Norway", - "PostalCode": "0171", - "Phone": "+47 22 44 22 22", - "Fax": null, - "Email": "bjorn.hansen@yahoo.no", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 243, - "Name": "Antal Dor�ti \u0026 London Symphony Orchestra", - "Albums": [ - { - "AlbumId": 308, - "Title": "Tchaikovsky: 1812 Festival Overture, Op.49, Capriccio Italien \u0026 Beethoven: Wellington's Victory", - "ArtistId": 243, - "Tracks": [ - { - "TrackId": 3442, - "Name": "Wellington's Victory or the Battle Symphony, Op.91: 2. Symphony of Triumph", - "AlbumId": 308, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Ludwig van Beethoven", - "Milliseconds": 412000, - "Bytes": 6965201, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 317, - "CustomerId": 3, - "InvoiceDate": "2012-10-28T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 3.96, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 244, - "Name": "Choir Of Westminster Abbey \u0026 Simon Preston", - "Albums": [ - { - "AlbumId": 309, - "Title": "Palestrina: Missa Papae Marcelli \u0026 Allegri: Miserere", - "ArtistId": 244, - "Tracks": [ - { - "TrackId": 3443, - "Name": "Missa Papae Marcelli: Kyrie", - "AlbumId": 309, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Giovanni Pierluigi da Palestrina", - "Milliseconds": 240666, - "Bytes": 4244149, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 245, - "Name": "Michael Tilson Thomas \u0026 San Francisco Symphony", - "Albums": [ - { - "AlbumId": 310, - "Title": "Prokofiev: Romeo \u0026 Juliet", - "ArtistId": 245, - "Tracks": [ - { - "TrackId": 3444, - "Name": "Romeo et Juliette: No. 11 - Danse des Chevaliers", - "AlbumId": 310, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": null, - "Milliseconds": 275015, - "Bytes": 4519239, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 317, - "CustomerId": 3, - "InvoiceDate": "2012-10-28T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 3.96, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 312, - "Title": "Berlioz: Symphonie Fantastique", - "ArtistId": 245, - "Tracks": [ - { - "TrackId": 3446, - "Name": "Symphonie Fantastique, Op. 14: V. Songe d'une nuit du sabbat", - "AlbumId": 312, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Hector Berlioz", - "Milliseconds": 561967, - "Bytes": 9173344, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 317, - "CustomerId": 3, - "InvoiceDate": "2012-10-28T00:00:00Z", - "BillingAddress": "1498 rue B�langer", - "BillingCity": "Montr�al", - "BillingState": "QC", - "BillingCountry": "Canada", - "BillingPostalCode": "H2G 1A7", - "Total": 3.96, - "Customer": { - "CustomerId": 3, - "FirstName": "Fran�ois", - "LastName": "Tremblay", - "Company": null, - "Address": "1498 rue B�langer", - "City": "Montr�al", - "State": "QC", - "Country": "Canada", - "PostalCode": "H2G 1A7", - "Phone": "+1 (514) 721-4711", - "Fax": null, - "Email": "ftremblay@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 246, - "Name": "Chor der Wiener Staatsoper, Herbert Von Karajan \u0026 Wiener Philharmoniker", - "Albums": [ - { - "AlbumId": 313, - "Title": "Bizet: Carmen Highlights", - "ArtistId": 246, - "Tracks": [ - { - "TrackId": 3447, - "Name": "Carmen: Overture", - "AlbumId": 313, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Georges Bizet", - "Milliseconds": 132932, - "Bytes": 2189002, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 247, - "Name": "The King's Singers", - "Albums": [ - { - "AlbumId": 314, - "Title": "English Renaissance", - "ArtistId": 247, - "Tracks": [ - { - "TrackId": 3448, - "Name": "Lamentations of Jeremiah, First Set \\ Incipit Lamentatio", - "AlbumId": 314, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Thomas Tallis", - "Milliseconds": 69194, - "Bytes": 1208080, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - }, - { - "TrackId": 3492, - "Name": "Sing Joyfully", - "AlbumId": 314, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "William Byrd", - "Milliseconds": 133768, - "Bytes": 2256484, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 107, - "CustomerId": 43, - "InvoiceDate": "2010-04-12T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 3.96, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 248, - "Name": "Berliner Philharmoniker \u0026 Herbert Von Karajan", - "Albums": [ - { - "AlbumId": 316, - "Title": "Grieg: Peer Gynt Suites \u0026 Sibelius: Pell�as et M�lisande", - "ArtistId": 248, - "Tracks": [ - { - "TrackId": 3450, - "Name": "Peer Gynt Suite No.1, Op.46: 1. Morning Mood", - "AlbumId": 316, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Edvard Grieg", - "Milliseconds": 253422, - "Bytes": 4298769, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 318, - "CustomerId": 7, - "InvoiceDate": "2012-10-29T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 5.94, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 320, - "Title": "Mozart: Symphonies Nos. 40 \u0026 41", - "ArtistId": 248, - "Tracks": [ - { - "TrackId": 3454, - "Name": "Symphony No. 41 in C Major, K. 551, \"Jupiter\": IV. Molto allegro", - "AlbumId": 320, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Wolfgang Amadeus Mozart", - "Milliseconds": 362933, - "Bytes": 6173269, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": [ - { - "InvoiceId": 318, - "CustomerId": 7, - "InvoiceDate": "2012-10-29T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 5.94, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 336, - "Title": "Prokofiev: Symphony No.5 \u0026 Stravinksy: Le Sacre Du Printemps", - "ArtistId": 248, - "Tracks": [ - { - "TrackId": 3491, - "Name": "Le Sacre Du Printemps: I.iv. Spring Rounds", - "AlbumId": 336, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Igor Stravinsky", - "Milliseconds": 234746, - "Bytes": 4072205, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 249, - "Name": "Sir Georg Solti, Sumi Jo \u0026 Wiener Philharmoniker", - "Albums": [ - { - "AlbumId": 317, - "Title": "Mozart Gala: Famous Arias", - "ArtistId": 249, - "Tracks": [ - { - "TrackId": 3451, - "Name": "Die Zauberfl�te, K.620: \"Der H�lle Rache Kocht in Meinem Herze\"", - "AlbumId": 317, - "MediaTypeId": 2, - "GenreId": 25, - "Composer": "Wolfgang Amadeus Mozart", - "Milliseconds": 174813, - "Bytes": 2861468, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 25, - "Name": "Opera" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 250, - "Name": "Christopher O'Riley", - "Albums": [ - { - "AlbumId": 318, - "Title": "SCRIABIN: Vers la flamme", - "ArtistId": 250, - "Tracks": [ - { - "TrackId": 3452, - "Name": "SCRIABIN: Prelude in B Major, Op. 11, No. 11", - "AlbumId": 318, - "MediaTypeId": 4, - "GenreId": 24, - "Composer": null, - "Milliseconds": 101293, - "Bytes": 3819535, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 4, - "Name": "Purchased AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 251, - "Name": "Fretwork", - "Albums": [ - { - "AlbumId": 319, - "Title": "Armada: Music from the Courts of England and Spain", - "ArtistId": 251, - "Tracks": [ - { - "TrackId": 3453, - "Name": "Pavan, Lachrimae Antiquae", - "AlbumId": 319, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "John Dowland", - "Milliseconds": 253281, - "Bytes": 4211495, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 14, - "Name": "Classical 101 - Next Steps" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 252, - "Name": "Amy Winehouse", - "Albums": [ - { - "AlbumId": 321, - "Title": "Back to Black", - "ArtistId": 252, - "Tracks": [ - { - "TrackId": 3455, - "Name": "Rehab", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": null, - "Milliseconds": 213240, - "Bytes": 3416878, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 209, - "CustomerId": 18, - "InvoiceDate": "2011-07-07T00:00:00Z", - "BillingAddress": "627 Broadway", - "BillingCity": "New York", - "BillingState": "NY", - "BillingCountry": "USA", - "BillingPostalCode": "10012-2612", - "Total": 0.99, - "Customer": { - "CustomerId": 18, - "FirstName": "Michelle", - "LastName": "Brooks", - "Company": null, - "Address": "627 Broadway", - "City": "New York", - "State": "NY", - "Country": "USA", - "PostalCode": "10012-2612", - "Phone": "+1 (212) 221-3546", - "Fax": "+1 (212) 221-4679", - "Email": "michelleb@aol.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3456, - "Name": "You Know I'm No Good", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": null, - "Milliseconds": 256946, - "Bytes": 4133694, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 210, - "CustomerId": 19, - "InvoiceDate": "2011-07-20T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 1.98, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3457, - "Name": "Me \u0026 Mr. Jones", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": null, - "Milliseconds": 151706, - "Bytes": 2449438, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 210, - "CustomerId": 19, - "InvoiceDate": "2011-07-20T00:00:00Z", - "BillingAddress": "1 Infinite Loop", - "BillingCity": "Cupertino", - "BillingState": "CA", - "BillingCountry": "USA", - "BillingPostalCode": "95014", - "Total": 1.98, - "Customer": { - "CustomerId": 19, - "FirstName": "Tim", - "LastName": "Goyer", - "Company": "Apple Inc.", - "Address": "1 Infinite Loop", - "City": "Cupertino", - "State": "CA", - "Country": "USA", - "PostalCode": "95014", - "Phone": "+1 (408) 996-1010", - "Fax": "+1 (408) 996-1011", - "Email": "tgoyer@apple.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3458, - "Name": "Just Friends", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": null, - "Milliseconds": 191933, - "Bytes": 3098906, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 318, - "CustomerId": 7, - "InvoiceDate": "2012-10-29T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 5.94, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3459, - "Name": "Back to Black", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": "Mark Ronson", - "Milliseconds": 240320, - "Bytes": 3852953, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 211, - "CustomerId": 21, - "InvoiceDate": "2011-07-20T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 1.98, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3460, - "Name": "Love Is a Losing Game", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": null, - "Milliseconds": 154386, - "Bytes": 2509409, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3461, - "Name": "Tears Dry On Their Own", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": "Nickolas Ashford \u0026 Valerie Simpson", - "Milliseconds": 185293, - "Bytes": 2996598, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 211, - "CustomerId": 21, - "InvoiceDate": "2011-07-20T00:00:00Z", - "BillingAddress": "801 W 4th Street", - "BillingCity": "Reno", - "BillingState": "NV", - "BillingCountry": "USA", - "BillingPostalCode": "89503", - "Total": 1.98, - "Customer": { - "CustomerId": 21, - "FirstName": "Kathy", - "LastName": "Chase", - "Company": null, - "Address": "801 W 4th Street", - "City": "Reno", - "State": "NV", - "Country": "USA", - "PostalCode": "89503", - "Phone": "+1 (775) 223-7665", - "Fax": null, - "Email": "kachase@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3462, - "Name": "Wake Up Alone", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": "Paul O'duffy", - "Milliseconds": 221413, - "Bytes": 3576773, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 318, - "CustomerId": 7, - "InvoiceDate": "2012-10-29T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 5.94, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3463, - "Name": "Some Unholy War", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": null, - "Milliseconds": 141520, - "Bytes": 2304465, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 212, - "CustomerId": 23, - "InvoiceDate": "2011-07-21T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 3.96, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3464, - "Name": "He Can Only Hold Her", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": "Richard Poindexter \u0026 Robert Poindexter", - "Milliseconds": 166680, - "Bytes": 2666531, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 103, - "CustomerId": 24, - "InvoiceDate": "2010-03-21T00:00:00Z", - "BillingAddress": "162 E Superior Street", - "BillingCity": "Chicago", - "BillingState": "IL", - "BillingCountry": "USA", - "BillingPostalCode": "60611", - "Total": 15.86, - "Customer": { - "CustomerId": 24, - "FirstName": "Frank", - "LastName": "Ralston", - "Company": null, - "Address": "162 E Superior Street", - "City": "Chicago", - "State": "IL", - "Country": "USA", - "PostalCode": "60611", - "Phone": "+1 (312) 332-3232", - "Fax": null, - "Email": "fralston@gmail.com", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3465, - "Name": "You Know I'm No Good (feat. Ghostface Killah)", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": null, - "Milliseconds": 202320, - "Bytes": 3260658, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 212, - "CustomerId": 23, - "InvoiceDate": "2011-07-21T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 3.96, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3466, - "Name": "Rehab (Hot Chip Remix)", - "AlbumId": 321, - "MediaTypeId": 2, - "GenreId": 14, - "Composer": null, - "Milliseconds": 418293, - "Bytes": 6670600, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 14, - "Name": "R\u0026B/Soul" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 318, - "CustomerId": 7, - "InvoiceDate": "2012-10-29T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 5.94, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - }, - { - "AlbumId": 322, - "Title": "Frank", - "ArtistId": 252, - "Tracks": [ - { - "TrackId": 3467, - "Name": "Intro / Stronger Than Me", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 234200, - "Bytes": 3832165, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 212, - "CustomerId": 23, - "InvoiceDate": "2011-07-21T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 3.96, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3468, - "Name": "You Sent Me Flying / Cherry", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 409906, - "Bytes": 6657517, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3469, - "Name": "F**k Me Pumps", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": "Salaam Remi", - "Milliseconds": 200253, - "Bytes": 3324343, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 212, - "CustomerId": 23, - "InvoiceDate": "2011-07-21T00:00:00Z", - "BillingAddress": "69 Salem Street", - "BillingCity": "Boston", - "BillingState": "MA", - "BillingCountry": "USA", - "BillingPostalCode": "2113", - "Total": 3.96, - "Customer": { - "CustomerId": 23, - "FirstName": "John", - "LastName": "Gordon", - "Company": null, - "Address": "69 Salem Street", - "City": "Boston", - "State": "MA", - "Country": "USA", - "PostalCode": "2113", - "Phone": "+1 (617) 522-1333", - "Fax": null, - "Email": "johngordon22@yahoo.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3470, - "Name": "I Heard Love Is Blind", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": null, - "Milliseconds": 129666, - "Bytes": 2190831, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 318, - "CustomerId": 7, - "InvoiceDate": "2012-10-29T00:00:00Z", - "BillingAddress": "Rotenturmstra�e 4, 1010 Innere Stadt", - "BillingCity": "Vienne", - "BillingState": null, - "BillingCountry": "Austria", - "BillingPostalCode": "1010", - "Total": 5.94, - "Customer": { - "CustomerId": 7, - "FirstName": "Astrid", - "LastName": "Gruber", - "Company": null, - "Address": "Rotenturmstra�e 4, 1010 Innere Stadt", - "City": "Vienne", - "State": null, - "Country": "Austria", - "PostalCode": "1010", - "Phone": "+43 01 5134505", - "Fax": null, - "Email": "astrid.gruber@apple.at", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3471, - "Name": "(There Is) No Greater Love (Teo Licks)", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": "Isham Jones \u0026 Marty Symes", - "Milliseconds": 167933, - "Bytes": 2773507, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3472, - "Name": "In My Bed", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": "Salaam Remi", - "Milliseconds": 315960, - "Bytes": 5211774, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3473, - "Name": "Take the Box", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": "Luke Smith", - "Milliseconds": 199160, - "Bytes": 3281526, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 213, - "CustomerId": 27, - "InvoiceDate": "2011-07-22T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 5.94, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3474, - "Name": "October Song", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": "Matt Rowe \u0026 Stefan Skarbek", - "Milliseconds": 204846, - "Bytes": 3358125, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3475, - "Name": "What Is It About Men", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": "Delroy \"Chris\" Cooper, Donovan Jackson, Earl Chinna Smith, Felix Howard, Gordon Williams, Luke Smith, Paul Watson \u0026 Wilburn Squiddley Cole", - "Milliseconds": 209573, - "Bytes": 3426106, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": null - }, - { - "TrackId": 3476, - "Name": "Help Yourself", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": "Freddy James, Jimmy hogarth \u0026 Larry Stock", - "Milliseconds": 300884, - "Bytes": 5029266, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - }, - { - "TrackId": 3477, - "Name": "Amy Amy Amy (Outro)", - "AlbumId": 322, - "MediaTypeId": 2, - "GenreId": 9, - "Composer": "Astor Campbell, Delroy \"Chris\" Cooper, Donovan Jackson, Dorothy Fields, Earl Chinna Smith, Felix Howard, Gordon Williams, James Moody, Jimmy McHugh, Matt Rowe, Salaam Remi \u0026 Stefan Skarbek", - "Milliseconds": 663426, - "Bytes": 10564704, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 9, - "Name": "Pop" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 213, - "CustomerId": 27, - "InvoiceDate": "2011-07-22T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 5.94, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 253, - "Name": "Calexico", - "Albums": [ - { - "AlbumId": 323, - "Title": "Carried to Dust (Bonus Track Version)", - "ArtistId": 253, - "Tracks": [ - { - "TrackId": 3478, - "Name": "Slowness", - "AlbumId": 323, - "MediaTypeId": 2, - "GenreId": 23, - "Composer": null, - "Milliseconds": 215386, - "Bytes": 3644793, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 23, - "Name": "Alternative" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - } - ], - "Invoices": [ - { - "InvoiceId": 104, - "CustomerId": 38, - "InvoiceDate": "2010-03-29T00:00:00Z", - "BillingAddress": "Barbarossastra�e 19", - "BillingCity": "Berlin", - "BillingState": null, - "BillingCountry": "Germany", - "BillingPostalCode": "10779", - "Total": 0.99, - "Customer": { - "CustomerId": 38, - "FirstName": "Niklas", - "LastName": "Schr�der", - "Company": null, - "Address": "Barbarossastra�e 19", - "City": "Berlin", - "State": null, - "Country": "Germany", - "PostalCode": "10779", - "Phone": "+49 030 2141444", - "Fax": null, - "Email": "nschroder@surfeu.de", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 254, - "Name": "Otto Klemperer \u0026 Philharmonia Orchestra", - "Albums": [ - { - "AlbumId": 324, - "Title": "Beethoven: Symphony No. 6 'Pastoral' Etc.", - "ArtistId": 254, - "Tracks": [ - { - "TrackId": 3479, - "Name": "Prometheus Overture, Op. 43", - "AlbumId": 324, - "MediaTypeId": 4, - "GenreId": 24, - "Composer": "Ludwig van Beethoven", - "Milliseconds": 339567, - "Bytes": 10887931, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 4, - "Name": "Purchased AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 105, - "CustomerId": 39, - "InvoiceDate": "2010-04-11T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 1.98, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 255, - "Name": "Yehudi Menuhin", - "Albums": [ - { - "AlbumId": 325, - "Title": "Bartok: Violin \u0026 Viola Concertos", - "ArtistId": 255, - "Tracks": [ - { - "TrackId": 3480, - "Name": "Sonata for Solo Violin: IV: Presto", - "AlbumId": 325, - "MediaTypeId": 4, - "GenreId": 24, - "Composer": "B�la Bart�k", - "Milliseconds": 299350, - "Bytes": 9785346, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 4, - "Name": "Purchased AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 105, - "CustomerId": 39, - "InvoiceDate": "2010-04-11T00:00:00Z", - "BillingAddress": "4, Rue Milton", - "BillingCity": "Paris", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "75009", - "Total": 1.98, - "Customer": { - "CustomerId": 39, - "FirstName": "Camille", - "LastName": "Bernard", - "Company": null, - "Address": "4, Rue Milton", - "City": "Paris", - "State": null, - "Country": "France", - "PostalCode": "75009", - "Phone": "+33 01 49 70 65 65", - "Fax": null, - "Email": "camille.bernard@yahoo.fr", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 256, - "Name": "Philharmonia Orchestra \u0026 Sir Neville Marriner", - "Albums": [ - { - "AlbumId": 326, - "Title": "Mendelssohn: A Midsummer Night's Dream", - "ArtistId": 256, - "Tracks": [ - { - "TrackId": 3481, - "Name": "A Midsummer Night's Dream, Op.61 Incidental Music: No.7 Notturno", - "AlbumId": 326, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": null, - "Milliseconds": 387826, - "Bytes": 6497867, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 213, - "CustomerId": 27, - "InvoiceDate": "2011-07-22T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 5.94, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 257, - "Name": "Academy of St. Martin in the Fields, Sir Neville Marriner \u0026 Thurston Dart", - "Albums": [ - { - "AlbumId": 327, - "Title": "Bach: Orchestral Suites Nos. 1 - 4", - "ArtistId": 257, - "Tracks": [ - { - "TrackId": 3482, - "Name": "Suite No. 3 in D, BWV 1068: III. Gavotte I \u0026 II", - "AlbumId": 327, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Sebastian Bach", - "Milliseconds": 225933, - "Bytes": 3847164, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 106, - "CustomerId": 41, - "InvoiceDate": "2010-04-11T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 1.98, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 258, - "Name": "Les Arts Florissants \u0026 William Christie", - "Albums": [ - { - "AlbumId": 328, - "Title": "Charpentier: Divertissements, Airs \u0026 Concerts", - "ArtistId": 258, - "Tracks": [ - { - "TrackId": 3483, - "Name": "Concert pour 4 Parties de V**les, H. 545: I. Prelude", - "AlbumId": 328, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Marc-Antoine Charpentier", - "Milliseconds": 110266, - "Bytes": 1973559, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 259, - "Name": "The 12 Cellists of The Berlin Philharmonic", - "Albums": [ - { - "AlbumId": 329, - "Title": "South American Getaway", - "ArtistId": 259, - "Tracks": [ - { - "TrackId": 3484, - "Name": "Adios nonino", - "AlbumId": 329, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Astor Piazzolla", - "Milliseconds": 289388, - "Bytes": 4781384, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 106, - "CustomerId": 41, - "InvoiceDate": "2010-04-11T00:00:00Z", - "BillingAddress": "11, Place Bellecour", - "BillingCity": "Lyon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "69002", - "Total": 1.98, - "Customer": { - "CustomerId": 41, - "FirstName": "Marc", - "LastName": "Dubois", - "Company": null, - "Address": "11, Place Bellecour", - "City": "Lyon", - "State": null, - "Country": "France", - "PostalCode": "69002", - "Phone": "+33 04 78 30 30 30", - "Fax": null, - "Email": "marc.dubois@hotmail.com", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 260, - "Name": "Adrian Leaper \u0026 Doreen de Feis", - "Albums": [ - { - "AlbumId": 330, - "Title": "G�recki: Symphony No. 3", - "ArtistId": 260, - "Tracks": [ - { - "TrackId": 3485, - "Name": "Symphony No. 3 Op. 36 for Orchestra and Soprano \"Symfonia Piesni Zalosnych\" \\ Lento E Largo - Tranquillissimo", - "AlbumId": 330, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Henryk G�recki", - "Milliseconds": 567494, - "Bytes": 9273123, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 213, - "CustomerId": 27, - "InvoiceDate": "2011-07-22T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 5.94, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 261, - "Name": "Roger Norrington, London Classical Players", - "Albums": [ - { - "AlbumId": 331, - "Title": "Purcell: The Fairy Queen", - "ArtistId": 261, - "Tracks": [ - { - "TrackId": 3486, - "Name": "Act IV, Symphony", - "AlbumId": 331, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Henry Purcell", - "Milliseconds": 364296, - "Bytes": 5987695, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 107, - "CustomerId": 43, - "InvoiceDate": "2010-04-12T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 3.96, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 262, - "Name": "Charles Dutoit \u0026 L'Orchestre Symphonique de Montr�al", - "Albums": [ - { - "AlbumId": 332, - "Title": "The Ultimate Relexation Album", - "ArtistId": 262, - "Tracks": [ - { - "TrackId": 3487, - "Name": "3 Gymnop�dies: No.1 - Lent Et Grave, No.3 - Lent Et Douloureux", - "AlbumId": 332, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Erik Satie", - "Milliseconds": 385506, - "Bytes": 6458501, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 263, - "Name": "Equale Brass Ensemble, John Eliot Gardiner \u0026 Munich Monteverdi Orchestra and Choir", - "Albums": [ - { - "AlbumId": 333, - "Title": "Purcell: Music for the Queen Mary", - "ArtistId": 263, - "Tracks": [ - { - "TrackId": 3488, - "Name": "Music for the Funeral of Queen Mary: VI. \"Thou Knowest, Lord, the Secrets of Our Hearts\"", - "AlbumId": 333, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Henry Purcell", - "Milliseconds": 142081, - "Bytes": 2365930, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 107, - "CustomerId": 43, - "InvoiceDate": "2010-04-12T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 3.96, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 264, - "Name": "Kent Nagano and Orchestre de l'Op�ra de Lyon", - "Albums": [ - { - "AlbumId": 334, - "Title": "Weill: The Seven Deadly Sins", - "ArtistId": 264, - "Tracks": [ - { - "TrackId": 3489, - "Name": "Symphony No. 2: III. Allegro vivace", - "AlbumId": 334, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Kurt Weill", - "Milliseconds": 376510, - "Bytes": 6129146, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 213, - "CustomerId": 27, - "InvoiceDate": "2011-07-22T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 5.94, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 265, - "Name": "Julian Bream", - "Albums": [ - { - "AlbumId": 335, - "Title": "J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major \u0026 Prelude, Fugue and Allegro", - "ArtistId": 265, - "Tracks": [ - { - "TrackId": 3490, - "Name": "Partita in E Major, BWV 1006A: I. Prelude", - "AlbumId": 335, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Johann Sebastian Bach", - "Milliseconds": 285673, - "Bytes": 4744929, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 107, - "CustomerId": 43, - "InvoiceDate": "2010-04-12T00:00:00Z", - "BillingAddress": "68, Rue Jouvence", - "BillingCity": "Dijon", - "BillingState": null, - "BillingCountry": "France", - "BillingPostalCode": "21000", - "Total": 3.96, - "Customer": { - "CustomerId": 43, - "FirstName": "Isabelle", - "LastName": "Mercier", - "Company": null, - "Address": "68, Rue Jouvence", - "City": "Dijon", - "State": null, - "Country": "France", - "PostalCode": "21000", - "Phone": "+33 03 80 73 66 99", - "Fax": null, - "Email": "isabelle_mercier@apple.fr", - "SupportRepId": 3, - "Employee": { - "EmployeeId": 3, - "LastName": "Peacock", - "FirstName": "Jane", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1973-08-29T00:00:00Z", - "HireDate": "2002-04-01T00:00:00Z", - "Address": "1111 6 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5M5", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-6712", - "Email": "jane@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 266, - "Name": "Martin Roscoe", - "Albums": [ - { - "AlbumId": 337, - "Title": "Szymanowski: Piano Works, Vol. 1", - "ArtistId": 266, - "Tracks": [ - { - "TrackId": 3493, - "Name": "Metopes, Op. 29: Calypso", - "AlbumId": 337, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Karol Szymanowski", - "Milliseconds": 333669, - "Bytes": 5548755, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 213, - "CustomerId": 27, - "InvoiceDate": "2011-07-22T00:00:00Z", - "BillingAddress": "1033 N Park Ave", - "BillingCity": "Tucson", - "BillingState": "AZ", - "BillingCountry": "USA", - "BillingPostalCode": "85719", - "Total": 5.94, - "Customer": { - "CustomerId": 27, - "FirstName": "Patrick", - "LastName": "Gray", - "Company": null, - "Address": "1033 N Park Ave", - "City": "Tucson", - "State": "AZ", - "Country": "USA", - "PostalCode": "85719", - "Phone": "+1 (520) 622-4200", - "Fax": null, - "Email": "patrick.gray@aol.com", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 267, - "Name": "G�teborgs Symfoniker \u0026 Neeme J�rvi", - "Albums": [ - { - "AlbumId": 338, - "Title": "Nielsen: The Six Symphonies", - "ArtistId": 267, - "Tracks": [ - { - "TrackId": 3494, - "Name": "Symphony No. 2, Op. 16 - \"The Four Temperaments\": II. Allegro Comodo e Flemmatico", - "AlbumId": 338, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Carl Nielsen", - "Milliseconds": 286998, - "Bytes": 4834785, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 268, - "Name": "Itzhak Perlman", - "Albums": [ - { - "AlbumId": 339, - "Title": "Great Recordings of the Century: Paganini's 24 Caprices", - "ArtistId": 268, - "Tracks": [ - { - "TrackId": 3495, - "Name": "24 Caprices, Op. 1, No. 24, for Solo Violin, in A Minor", - "AlbumId": 339, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Niccol� Paganini", - "Milliseconds": 265541, - "Bytes": 4371533, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 269, - "Name": "Michele Campanella", - "Albums": [ - { - "AlbumId": 340, - "Title": "Liszt - 12 �tudes D'Execution Transcendante", - "ArtistId": 269, - "Tracks": [ - { - "TrackId": 3496, - "Name": "�tude 1, In C Major - Preludio (Presto) - Liszt", - "AlbumId": 340, - "MediaTypeId": 4, - "GenreId": 24, - "Composer": null, - "Milliseconds": 51780, - "Bytes": 2229617, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 4, - "Name": "Purchased AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 108, - "CustomerId": 47, - "InvoiceDate": "2010-04-13T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 5.94, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 270, - "Name": "Gerald Moore", - "Albums": [ - { - "AlbumId": 341, - "Title": "Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder", - "ArtistId": 270, - "Tracks": [ - { - "TrackId": 3497, - "Name": "Erlkonig, D.328", - "AlbumId": 341, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": null, - "Milliseconds": 261849, - "Bytes": 4307907, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 271, - "Name": "Mela Tenenbaum, Pro Musica Prague \u0026 Richard Kapp", - "Albums": [ - { - "AlbumId": 342, - "Title": "Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3", - "ArtistId": 271, - "Tracks": [ - { - "TrackId": 3498, - "Name": "Concerto for Violin, Strings and Continuo in G Major, Op. 3, No. 9: I. Allegro", - "AlbumId": 342, - "MediaTypeId": 4, - "GenreId": 24, - "Composer": "Pietro Antonio Locatelli", - "Milliseconds": 493573, - "Bytes": 16454937, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 4, - "Name": "Purchased AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 272, - "Name": "Emerson String Quartet", - "Albums": [ - { - "AlbumId": 344, - "Title": "Schubert: The Late String Quartets \u0026 String Quintet (3 CD's)", - "ArtistId": 272, - "Tracks": [ - { - "TrackId": 3500, - "Name": "String Quartet No. 12 in C Minor, D. 703 \"Quartettsatz\": II. Andante - Allegro assai", - "AlbumId": 344, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Franz Schubert", - "Milliseconds": 139200, - "Bytes": 2283131, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": [ - { - "InvoiceId": 108, - "CustomerId": 47, - "InvoiceDate": "2010-04-13T00:00:00Z", - "BillingAddress": "Via Degli Scipioni, 43", - "BillingCity": "Rome", - "BillingState": "RM", - "BillingCountry": "Italy", - "BillingPostalCode": "00192", - "Total": 5.94, - "Customer": { - "CustomerId": 47, - "FirstName": "Lucas", - "LastName": "Mancini", - "Company": null, - "Address": "Via Degli Scipioni, 43", - "City": "Rome", - "State": "RM", - "Country": "Italy", - "PostalCode": "00192", - "Phone": "+39 06 39733434", - "Fax": null, - "Email": "lucas.mancini@yahoo.it", - "SupportRepId": 5, - "Employee": { - "EmployeeId": 5, - "LastName": "Johnson", - "FirstName": "Steve", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1965-03-03T00:00:00Z", - "HireDate": "2003-10-17T00:00:00Z", - "Address": "7727B 41 Ave", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T3B 1Y7", - "Phone": "1 (780) 836-9987", - "Fax": "1 (780) 836-9543", - "Email": "steve@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - }, - { - "InvoiceId": 319, - "CustomerId": 13, - "InvoiceDate": "2012-11-01T00:00:00Z", - "BillingAddress": "Qe 7 Bloco G", - "BillingCity": "Bras�lia", - "BillingState": "DF", - "BillingCountry": "Brazil", - "BillingPostalCode": "71020-677", - "Total": 8.91, - "Customer": { - "CustomerId": 13, - "FirstName": "Fernanda", - "LastName": "Ramos", - "Company": null, - "Address": "Qe 7 Bloco G", - "City": "Bras�lia", - "State": "DF", - "Country": "Brazil", - "PostalCode": "71020-677", - "Phone": "+55 (61) 3363-5547", - "Fax": "+55 (61) 3363-7855", - "Email": "fernadaramos4@uol.com.br", - "SupportRepId": 4, - "Employee": { - "EmployeeId": 4, - "LastName": "Park", - "FirstName": "Margaret", - "Title": "Sales Support Agent", - "ReportsTo": 2, - "BirthDate": "1947-09-19T00:00:00Z", - "HireDate": "2003-05-03T00:00:00Z", - "Address": "683 10 Street SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 5G3", - "Phone": "+1 (403) 263-4423", - "Fax": "+1 (403) 263-4289", - "Email": "margaret@chinookcorp.com", - "Manager": { - "EmployeeId": 2, - "LastName": "Edwards", - "FirstName": "Nancy", - "Title": "Sales Manager", - "ReportsTo": 1, - "BirthDate": "1958-12-08T00:00:00Z", - "HireDate": "2002-05-01T00:00:00Z", - "Address": "825 8 Ave SW", - "City": "Calgary", - "State": "AB", - "Country": "Canada", - "PostalCode": "T2P 2T3", - "Phone": "+1 (403) 262-3443", - "Fax": "+1 (403) 262-3322", - "Email": "nancy@chinookcorp.com" - } - } - } - } - ] - } - ] - } - ] - }, - { - "ArtistId": 273, - "Name": "C. Monteverdi, Nigel Rogers - Chiaroscuro; London Baroque; London Cornett \u0026 Sackbu", - "Albums": [ - { - "AlbumId": 345, - "Title": "Monteverdi: L'Orfeo", - "ArtistId": 273, - "Tracks": [ - { - "TrackId": 3501, - "Name": "L'orfeo, Act 3, Sinfonia (Orchestra)", - "AlbumId": 345, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Claudio Monteverdi", - "Milliseconds": 66639, - "Bytes": 1189062, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 274, - "Name": "Nash Ensemble", - "Albums": [ - { - "AlbumId": 346, - "Title": "Mozart: Chamber Music", - "ArtistId": 274, - "Tracks": [ - { - "TrackId": 3502, - "Name": "Quintet for Horn, Violin, 2 Violas, and Cello in E Flat Major, K. 407/386c: III. Allegro", - "AlbumId": 346, - "MediaTypeId": 2, - "GenreId": 24, - "Composer": "Wolfgang Amadeus Mozart", - "Milliseconds": 221331, - "Bytes": 3665114, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 24, - "Name": "Classical" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - }, - { - "ArtistId": 275, - "Name": "Philip Glass Ensemble", - "Albums": [ - { - "AlbumId": 347, - "Title": "Koyaanisqatsi (Soundtrack from the Motion Picture)", - "ArtistId": 275, - "Tracks": [ - { - "TrackId": 3503, - "Name": "Koyaanisqatsi", - "AlbumId": 347, - "MediaTypeId": 2, - "GenreId": 10, - "Composer": "Philip Glass", - "Milliseconds": 206005, - "Bytes": 3305164, - "UnitPrice": 0.99, - "Genre": { - "GenreId": 10, - "Name": "Soundtrack" - }, - "MediaType": { - "MediaTypeId": 2, - "Name": "Protected AAC audio file" - }, - "Playlists": [ - { - "PlaylistId": 1, - "Name": "Music" - }, - { - "PlaylistId": 5, - "Name": "90�s Music" - }, - { - "PlaylistId": 8, - "Name": "Music" - }, - { - "PlaylistId": 12, - "Name": "Classical" - }, - { - "PlaylistId": 13, - "Name": "Classical 101 - Deep Cuts" - } - ], - "Invoices": null - } - ] - } - ] - } -] \ No newline at end of file diff --git a/tests/postgres/testdata/northwind-all.json b/tests/postgres/testdata/northwind-all.json deleted file mode 100644 index 94927ad..0000000 --- a/tests/postgres/testdata/northwind-all.json +++ /dev/null @@ -1,135339 +0,0 @@ -[ - { - "CustomerID": "ALFKI", - "CompanyName": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "Region": null, - "PostalCode": "12209", - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10643, - "CustomerID": "ALFKI", - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00Z", - "RequiredDate": "1997-09-22T00:00:00Z", - "ShippedDate": "1997-09-02T00:00:00Z", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10643, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10643, - "CustomerID": "ALFKI", - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00Z", - "RequiredDate": "1997-09-22T00:00:00Z", - "ShippedDate": "1997-09-02T00:00:00Z", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10643, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10643, - "CustomerID": "ALFKI", - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00Z", - "RequiredDate": "1997-09-22T00:00:00Z", - "ShippedDate": "1997-09-02T00:00:00Z", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10643, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, - "Discount": 0.25, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10692, - "CustomerID": "ALFKI", - "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00Z", - "RequiredDate": "1997-10-31T00:00:00Z", - "ShippedDate": "1997-10-13T00:00:00Z", - "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10692, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10702, - "CustomerID": "ALFKI", - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-10-21T00:00:00Z", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10702, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10702, - "CustomerID": "ALFKI", - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-10-21T00:00:00Z", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10702, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10835, - "CustomerID": "ALFKI", - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00Z", - "RequiredDate": "1998-02-12T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10835, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10835, - "CustomerID": "ALFKI", - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00Z", - "RequiredDate": "1998-02-12T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10835, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10952, - "CustomerID": "ALFKI", - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10952, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.05, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10952, - "CustomerID": "ALFKI", - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10952, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11011, - "CustomerID": "ALFKI", - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-05-07T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11011, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11011, - "CustomerID": "ALFKI", - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-05-07T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipRegion": null, - "ShipPostalCode": "12209", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11011, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "ANATR", - "CompanyName": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "Region": null, - "PostalCode": "05021", - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10308, - "CustomerID": "ANATR", - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00Z", - "RequiredDate": "1996-10-16T00:00:00Z", - "ShippedDate": "1996-09-24T00:00:00Z", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10308, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10308, - "CustomerID": "ANATR", - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00Z", - "RequiredDate": "1996-10-16T00:00:00Z", - "ShippedDate": "1996-09-24T00:00:00Z", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10308, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10625, - "CustomerID": "ANATR", - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00Z", - "RequiredDate": "1997-09-05T00:00:00Z", - "ShippedDate": "1997-08-14T00:00:00Z", - "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10625, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10625, - "CustomerID": "ANATR", - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00Z", - "RequiredDate": "1997-09-05T00:00:00Z", - "ShippedDate": "1997-08-14T00:00:00Z", - "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10625, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10625, - "CustomerID": "ANATR", - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00Z", - "RequiredDate": "1997-09-05T00:00:00Z", - "ShippedDate": "1997-08-14T00:00:00Z", - "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10625, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10759, - "CustomerID": "ANATR", - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00Z", - "RequiredDate": "1997-12-26T00:00:00Z", - "ShippedDate": "1997-12-12T00:00:00Z", - "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10759, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10926, - "CustomerID": "ANATR", - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-03-11T00:00:00Z", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10926, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10926, - "CustomerID": "ANATR", - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-03-11T00:00:00Z", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10926, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10926, - "CustomerID": "ANATR", - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-03-11T00:00:00Z", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10926, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10926, - "CustomerID": "ANATR", - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-03-11T00:00:00Z", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05021", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10926, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "ANTON", - "CompanyName": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "Region": null, - "PostalCode": "05023", - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10365, - "CustomerID": "ANTON", - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00Z", - "RequiredDate": "1996-12-25T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10365, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10507, - "CustomerID": "ANTON", - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00Z", - "RequiredDate": "1997-05-13T00:00:00Z", - "ShippedDate": "1997-04-22T00:00:00Z", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10507, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10507, - "CustomerID": "ANTON", - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00Z", - "RequiredDate": "1997-05-13T00:00:00Z", - "ShippedDate": "1997-04-22T00:00:00Z", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10507, - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 48, - "ProductName": "Chocolade", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 pkgs.", - "UnitPrice": 12.75, - "UnitsInStock": 15, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10535, - "CustomerID": "ANTON", - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00Z", - "RequiredDate": "1997-06-10T00:00:00Z", - "ShippedDate": "1997-05-21T00:00:00Z", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10535, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10535, - "CustomerID": "ANTON", - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00Z", - "RequiredDate": "1997-06-10T00:00:00Z", - "ShippedDate": "1997-05-21T00:00:00Z", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10535, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10535, - "CustomerID": "ANTON", - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00Z", - "RequiredDate": "1997-06-10T00:00:00Z", - "ShippedDate": "1997-05-21T00:00:00Z", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10535, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10535, - "CustomerID": "ANTON", - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00Z", - "RequiredDate": "1997-06-10T00:00:00Z", - "ShippedDate": "1997-05-21T00:00:00Z", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10535, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10573, - "CustomerID": "ANTON", - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00Z", - "RequiredDate": "1997-07-17T00:00:00Z", - "ShippedDate": "1997-06-20T00:00:00Z", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10573, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10573, - "CustomerID": "ANTON", - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00Z", - "RequiredDate": "1997-07-17T00:00:00Z", - "ShippedDate": "1997-06-20T00:00:00Z", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10573, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10573, - "CustomerID": "ANTON", - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00Z", - "RequiredDate": "1997-07-17T00:00:00Z", - "ShippedDate": "1997-06-20T00:00:00Z", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10573, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10677, - "CustomerID": "ANTON", - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-09-26T00:00:00Z", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10677, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10677, - "CustomerID": "ANTON", - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-09-26T00:00:00Z", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10677, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.15, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10682, - "CustomerID": "ANTON", - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00Z", - "RequiredDate": "1997-10-23T00:00:00Z", - "ShippedDate": "1997-10-01T00:00:00Z", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10682, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10682, - "CustomerID": "ANTON", - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00Z", - "RequiredDate": "1997-10-23T00:00:00Z", - "ShippedDate": "1997-10-01T00:00:00Z", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10682, - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 66, - "ProductName": "Louisiana Hot Spiced Okra", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "24 - 8 oz jars", - "UnitPrice": 17, - "UnitsInStock": 4, - "UnitsOnOrder": 100, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10682, - "CustomerID": "ANTON", - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00Z", - "RequiredDate": "1997-10-23T00:00:00Z", - "ShippedDate": "1997-10-01T00:00:00Z", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10682, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10856, - "CustomerID": "ANTON", - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00Z", - "RequiredDate": "1998-02-25T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10856, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10856, - "CustomerID": "ANTON", - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00Z", - "RequiredDate": "1998-02-25T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05023", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10856, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "AROUT", - "CompanyName": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "Region": null, - "PostalCode": "WA1 1DP", - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10355, - "CustomerID": "AROUT", - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00Z", - "RequiredDate": "1996-12-13T00:00:00Z", - "ShippedDate": "1996-11-20T00:00:00Z", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10355, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10355, - "CustomerID": "AROUT", - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00Z", - "RequiredDate": "1996-12-13T00:00:00Z", - "ShippedDate": "1996-11-20T00:00:00Z", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10355, - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10383, - "CustomerID": "AROUT", - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00Z", - "RequiredDate": "1997-01-13T00:00:00Z", - "ShippedDate": "1996-12-18T00:00:00Z", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10383, - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10383, - "CustomerID": "AROUT", - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00Z", - "RequiredDate": "1997-01-13T00:00:00Z", - "ShippedDate": "1996-12-18T00:00:00Z", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10383, - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10383, - "CustomerID": "AROUT", - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00Z", - "RequiredDate": "1997-01-13T00:00:00Z", - "ShippedDate": "1996-12-18T00:00:00Z", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10383, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10453, - "CustomerID": "AROUT", - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00Z", - "RequiredDate": "1997-03-21T00:00:00Z", - "ShippedDate": "1997-02-26T00:00:00Z", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10453, - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 48, - "ProductName": "Chocolade", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 pkgs.", - "UnitPrice": 12.75, - "UnitsInStock": 15, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10453, - "CustomerID": "AROUT", - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00Z", - "RequiredDate": "1997-03-21T00:00:00Z", - "ShippedDate": "1997-02-26T00:00:00Z", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10453, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10558, - "CustomerID": "AROUT", - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00Z", - "RequiredDate": "1997-07-02T00:00:00Z", - "ShippedDate": "1997-06-10T00:00:00Z", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10558, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10558, - "CustomerID": "AROUT", - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00Z", - "RequiredDate": "1997-07-02T00:00:00Z", - "ShippedDate": "1997-06-10T00:00:00Z", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10558, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10558, - "CustomerID": "AROUT", - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00Z", - "RequiredDate": "1997-07-02T00:00:00Z", - "ShippedDate": "1997-06-10T00:00:00Z", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10558, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10558, - "CustomerID": "AROUT", - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00Z", - "RequiredDate": "1997-07-02T00:00:00Z", - "ShippedDate": "1997-06-10T00:00:00Z", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10558, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10558, - "CustomerID": "AROUT", - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00Z", - "RequiredDate": "1997-07-02T00:00:00Z", - "ShippedDate": "1997-06-10T00:00:00Z", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10558, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10707, - "CustomerID": "AROUT", - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00Z", - "RequiredDate": "1997-10-30T00:00:00Z", - "ShippedDate": "1997-10-23T00:00:00Z", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10707, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10707, - "CustomerID": "AROUT", - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00Z", - "RequiredDate": "1997-10-30T00:00:00Z", - "ShippedDate": "1997-10-23T00:00:00Z", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10707, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10707, - "CustomerID": "AROUT", - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00Z", - "RequiredDate": "1997-10-30T00:00:00Z", - "ShippedDate": "1997-10-23T00:00:00Z", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10707, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, - "Discount": 0.15, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10741, - "CustomerID": "AROUT", - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00Z", - "RequiredDate": "1997-11-28T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10741, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10743, - "CustomerID": "AROUT", - "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00Z", - "RequiredDate": "1997-12-15T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10743, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, - "Discount": 0.05, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10768, - "CustomerID": "AROUT", - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00Z", - "RequiredDate": "1998-01-05T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10768, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10768, - "CustomerID": "AROUT", - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00Z", - "RequiredDate": "1998-01-05T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10768, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10768, - "CustomerID": "AROUT", - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00Z", - "RequiredDate": "1998-01-05T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10768, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10768, - "CustomerID": "AROUT", - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00Z", - "RequiredDate": "1998-01-05T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10768, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10793, - "CustomerID": "AROUT", - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00Z", - "RequiredDate": "1998-01-21T00:00:00Z", - "ShippedDate": "1998-01-08T00:00:00Z", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10793, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10793, - "CustomerID": "AROUT", - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00Z", - "RequiredDate": "1998-01-21T00:00:00Z", - "ShippedDate": "1998-01-08T00:00:00Z", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10793, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10864, - "CustomerID": "AROUT", - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00Z", - "RequiredDate": "1998-03-02T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10864, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10864, - "CustomerID": "AROUT", - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00Z", - "RequiredDate": "1998-03-02T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10864, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10920, - "CustomerID": "AROUT", - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00Z", - "RequiredDate": "1998-03-31T00:00:00Z", - "ShippedDate": "1998-03-09T00:00:00Z", - "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10920, - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10953, - "CustomerID": "AROUT", - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-25T00:00:00Z", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10953, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10953, - "CustomerID": "AROUT", - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-25T00:00:00Z", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10953, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 11016, - "CustomerID": "AROUT", - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00Z", - "RequiredDate": "1998-05-08T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11016, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 11016, - "CustomerID": "AROUT", - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00Z", - "RequiredDate": "1998-05-08T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": "CO7 6JX", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11016, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "BERGS", - "CompanyName": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "Region": null, - "PostalCode": "S-958 22", - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10278, - "CustomerID": "BERGS", - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00Z", - "RequiredDate": "1996-09-09T00:00:00Z", - "ShippedDate": "1996-08-16T00:00:00Z", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10278, - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10278, - "CustomerID": "BERGS", - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00Z", - "RequiredDate": "1996-09-09T00:00:00Z", - "ShippedDate": "1996-08-16T00:00:00Z", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10278, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10278, - "CustomerID": "BERGS", - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00Z", - "RequiredDate": "1996-09-09T00:00:00Z", - "ShippedDate": "1996-08-16T00:00:00Z", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10278, - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10278, - "CustomerID": "BERGS", - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00Z", - "RequiredDate": "1996-09-09T00:00:00Z", - "ShippedDate": "1996-08-16T00:00:00Z", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10278, - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10280, - "CustomerID": "BERGS", - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00Z", - "RequiredDate": "1996-09-11T00:00:00Z", - "ShippedDate": "1996-09-12T00:00:00Z", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10280, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10280, - "CustomerID": "BERGS", - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00Z", - "RequiredDate": "1996-09-11T00:00:00Z", - "ShippedDate": "1996-09-12T00:00:00Z", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10280, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10280, - "CustomerID": "BERGS", - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00Z", - "RequiredDate": "1996-09-11T00:00:00Z", - "ShippedDate": "1996-09-12T00:00:00Z", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10280, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10384, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00Z", - "RequiredDate": "1997-01-13T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10384, - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10384, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00Z", - "RequiredDate": "1997-01-13T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10384, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10444, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00Z", - "RequiredDate": "1997-03-12T00:00:00Z", - "ShippedDate": "1997-02-21T00:00:00Z", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10444, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10444, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00Z", - "RequiredDate": "1997-03-12T00:00:00Z", - "ShippedDate": "1997-02-21T00:00:00Z", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10444, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10444, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00Z", - "RequiredDate": "1997-03-12T00:00:00Z", - "ShippedDate": "1997-02-21T00:00:00Z", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10444, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10444, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00Z", - "RequiredDate": "1997-03-12T00:00:00Z", - "ShippedDate": "1997-02-21T00:00:00Z", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10444, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10445, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00Z", - "RequiredDate": "1997-03-13T00:00:00Z", - "ShippedDate": "1997-02-20T00:00:00Z", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10445, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10445, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00Z", - "RequiredDate": "1997-03-13T00:00:00Z", - "ShippedDate": "1997-02-20T00:00:00Z", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10445, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10524, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00Z", - "RequiredDate": "1997-05-29T00:00:00Z", - "ShippedDate": "1997-05-07T00:00:00Z", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10524, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10524, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00Z", - "RequiredDate": "1997-05-29T00:00:00Z", - "ShippedDate": "1997-05-07T00:00:00Z", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10524, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10524, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00Z", - "RequiredDate": "1997-05-29T00:00:00Z", - "ShippedDate": "1997-05-07T00:00:00Z", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10524, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10524, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00Z", - "RequiredDate": "1997-05-29T00:00:00Z", - "ShippedDate": "1997-05-07T00:00:00Z", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10524, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10572, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00Z", - "RequiredDate": "1997-07-16T00:00:00Z", - "ShippedDate": "1997-06-25T00:00:00Z", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10572, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10572, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00Z", - "RequiredDate": "1997-07-16T00:00:00Z", - "ShippedDate": "1997-06-25T00:00:00Z", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10572, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10572, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00Z", - "RequiredDate": "1997-07-16T00:00:00Z", - "ShippedDate": "1997-06-25T00:00:00Z", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10572, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10572, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00Z", - "RequiredDate": "1997-07-16T00:00:00Z", - "ShippedDate": "1997-06-25T00:00:00Z", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10572, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10626, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00Z", - "RequiredDate": "1997-09-08T00:00:00Z", - "ShippedDate": "1997-08-20T00:00:00Z", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10626, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10626, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00Z", - "RequiredDate": "1997-09-08T00:00:00Z", - "ShippedDate": "1997-08-20T00:00:00Z", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10626, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10626, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00Z", - "RequiredDate": "1997-09-08T00:00:00Z", - "ShippedDate": "1997-08-20T00:00:00Z", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10626, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10654, - "CustomerID": "BERGS", - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00Z", - "RequiredDate": "1997-09-30T00:00:00Z", - "ShippedDate": "1997-09-11T00:00:00Z", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10654, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 12, - "Discount": 0.1, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10654, - "CustomerID": "BERGS", - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00Z", - "RequiredDate": "1997-09-30T00:00:00Z", - "ShippedDate": "1997-09-11T00:00:00Z", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10654, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10654, - "CustomerID": "BERGS", - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00Z", - "RequiredDate": "1997-09-30T00:00:00Z", - "ShippedDate": "1997-09-11T00:00:00Z", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10654, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.1, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10672, - "CustomerID": "BERGS", - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00Z", - "RequiredDate": "1997-10-01T00:00:00Z", - "ShippedDate": "1997-09-26T00:00:00Z", - "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10672, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10672, - "CustomerID": "BERGS", - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00Z", - "RequiredDate": "1997-10-01T00:00:00Z", - "ShippedDate": "1997-09-26T00:00:00Z", - "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10672, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10689, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00Z", - "RequiredDate": "1997-10-29T00:00:00Z", - "ShippedDate": "1997-10-07T00:00:00Z", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10689, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10733, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00Z", - "RequiredDate": "1997-12-05T00:00:00Z", - "ShippedDate": "1997-11-10T00:00:00Z", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10733, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10733, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00Z", - "RequiredDate": "1997-12-05T00:00:00Z", - "ShippedDate": "1997-11-10T00:00:00Z", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10733, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10733, - "CustomerID": "BERGS", - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00Z", - "RequiredDate": "1997-12-05T00:00:00Z", - "ShippedDate": "1997-11-10T00:00:00Z", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10733, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10778, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00Z", - "RequiredDate": "1998-01-13T00:00:00Z", - "ShippedDate": "1997-12-24T00:00:00Z", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10778, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10837, - "CustomerID": "BERGS", - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10837, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10837, - "CustomerID": "BERGS", - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10837, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10837, - "CustomerID": "BERGS", - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10837, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10837, - "CustomerID": "BERGS", - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10837, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10857, - "CustomerID": "BERGS", - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00Z", - "RequiredDate": "1998-02-25T00:00:00Z", - "ShippedDate": "1998-02-06T00:00:00Z", - "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10857, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10857, - "CustomerID": "BERGS", - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00Z", - "RequiredDate": "1998-02-25T00:00:00Z", - "ShippedDate": "1998-02-06T00:00:00Z", - "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10857, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10857, - "CustomerID": "BERGS", - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00Z", - "RequiredDate": "1998-02-25T00:00:00Z", - "ShippedDate": "1998-02-06T00:00:00Z", - "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10857, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10866, - "CustomerID": "BERGS", - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00Z", - "RequiredDate": "1998-03-03T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10866, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10866, - "CustomerID": "BERGS", - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00Z", - "RequiredDate": "1998-03-03T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10866, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, - "Discount": 0.25, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10866, - "CustomerID": "BERGS", - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00Z", - "RequiredDate": "1998-03-03T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10866, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10875, - "CustomerID": "BERGS", - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-03-03T00:00:00Z", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10875, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10875, - "CustomerID": "BERGS", - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-03-03T00:00:00Z", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10875, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10875, - "CustomerID": "BERGS", - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-03-03T00:00:00Z", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10875, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10924, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10924, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10924, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10924, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10924, - "CustomerID": "BERGS", - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipRegion": null, - "ShipPostalCode": "S-958 22", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10924, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "BLAUS", - "CompanyName": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "Region": null, - "PostalCode": "68306", - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10501, - "CustomerID": "BLAUS", - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00Z", - "RequiredDate": "1997-05-07T00:00:00Z", - "ShippedDate": "1997-04-16T00:00:00Z", - "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10501, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10509, - "CustomerID": "BLAUS", - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00Z", - "RequiredDate": "1997-05-15T00:00:00Z", - "ShippedDate": "1997-04-29T00:00:00Z", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10509, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10582, - "CustomerID": "BLAUS", - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00Z", - "RequiredDate": "1997-07-25T00:00:00Z", - "ShippedDate": "1997-07-14T00:00:00Z", - "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10582, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10582, - "CustomerID": "BLAUS", - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00Z", - "RequiredDate": "1997-07-25T00:00:00Z", - "ShippedDate": "1997-07-14T00:00:00Z", - "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10582, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10614, - "CustomerID": "BLAUS", - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00Z", - "RequiredDate": "1997-08-26T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10614, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10614, - "CustomerID": "BLAUS", - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00Z", - "RequiredDate": "1997-08-26T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10614, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10614, - "CustomerID": "BLAUS", - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00Z", - "RequiredDate": "1997-08-26T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10614, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10853, - "CustomerID": "BLAUS", - "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-02-03T00:00:00Z", - "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10853, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10956, - "CustomerID": "BLAUS", - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10956, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10956, - "CustomerID": "BLAUS", - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10956, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10956, - "CustomerID": "BLAUS", - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10956, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11058, - "CustomerID": "BLAUS", - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00Z", - "RequiredDate": "1998-05-27T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11058, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11058, - "CustomerID": "BLAUS", - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00Z", - "RequiredDate": "1998-05-27T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11058, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11058, - "CustomerID": "BLAUS", - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00Z", - "RequiredDate": "1998-05-27T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipRegion": null, - "ShipPostalCode": "68306", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11058, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "BLONP", - "CompanyName": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "Region": null, - "PostalCode": "67000", - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10265, - "CustomerID": "BLONP", - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00Z", - "RequiredDate": "1996-08-22T00:00:00Z", - "ShippedDate": "1996-08-12T00:00:00Z", - "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10265, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10265, - "CustomerID": "BLONP", - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00Z", - "RequiredDate": "1996-08-22T00:00:00Z", - "ShippedDate": "1996-08-12T00:00:00Z", - "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10265, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10297, - "CustomerID": "BLONP", - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00Z", - "RequiredDate": "1996-10-16T00:00:00Z", - "ShippedDate": "1996-09-10T00:00:00Z", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10297, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10297, - "CustomerID": "BLONP", - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00Z", - "RequiredDate": "1996-10-16T00:00:00Z", - "ShippedDate": "1996-09-10T00:00:00Z", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10297, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10360, - "CustomerID": "BLONP", - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00Z", - "RequiredDate": "1996-12-20T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10360, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10360, - "CustomerID": "BLONP", - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00Z", - "RequiredDate": "1996-12-20T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10360, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10360, - "CustomerID": "BLONP", - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00Z", - "RequiredDate": "1996-12-20T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10360, - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10360, - "CustomerID": "BLONP", - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00Z", - "RequiredDate": "1996-12-20T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10360, - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10360, - "CustomerID": "BLONP", - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00Z", - "RequiredDate": "1996-12-20T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10360, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10436, - "CustomerID": "BLONP", - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-02-11T00:00:00Z", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10436, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10436, - "CustomerID": "BLONP", - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-02-11T00:00:00Z", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10436, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10436, - "CustomerID": "BLONP", - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-02-11T00:00:00Z", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10436, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10436, - "CustomerID": "BLONP", - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-02-11T00:00:00Z", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10436, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10449, - "CustomerID": "BLONP", - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00Z", - "RequiredDate": "1997-03-18T00:00:00Z", - "ShippedDate": "1997-02-27T00:00:00Z", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10449, - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10449, - "CustomerID": "BLONP", - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00Z", - "RequiredDate": "1997-03-18T00:00:00Z", - "ShippedDate": "1997-02-27T00:00:00Z", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10449, - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10449, - "CustomerID": "BLONP", - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00Z", - "RequiredDate": "1997-03-18T00:00:00Z", - "ShippedDate": "1997-02-27T00:00:00Z", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10449, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10559, - "CustomerID": "BLONP", - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00Z", - "RequiredDate": "1997-07-03T00:00:00Z", - "ShippedDate": "1997-06-13T00:00:00Z", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10559, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10559, - "CustomerID": "BLONP", - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00Z", - "RequiredDate": "1997-07-03T00:00:00Z", - "ShippedDate": "1997-06-13T00:00:00Z", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10559, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.05, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10566, - "CustomerID": "BLONP", - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00Z", - "RequiredDate": "1997-07-10T00:00:00Z", - "ShippedDate": "1997-06-18T00:00:00Z", - "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10566, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.15, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10566, - "CustomerID": "BLONP", - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00Z", - "RequiredDate": "1997-07-10T00:00:00Z", - "ShippedDate": "1997-06-18T00:00:00Z", - "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10566, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.15, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10566, - "CustomerID": "BLONP", - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00Z", - "RequiredDate": "1997-07-10T00:00:00Z", - "ShippedDate": "1997-06-18T00:00:00Z", - "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10566, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10584, - "CustomerID": "BLONP", - "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00Z", - "RequiredDate": "1997-07-28T00:00:00Z", - "ShippedDate": "1997-07-04T00:00:00Z", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10584, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10628, - "CustomerID": "BLONP", - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00Z", - "RequiredDate": "1997-09-09T00:00:00Z", - "ShippedDate": "1997-08-20T00:00:00Z", - "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10628, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10679, - "CustomerID": "BLONP", - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00Z", - "RequiredDate": "1997-10-21T00:00:00Z", - "ShippedDate": "1997-09-30T00:00:00Z", - "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10679, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10826, - "CustomerID": "BLONP", - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00Z", - "RequiredDate": "1998-02-09T00:00:00Z", - "ShippedDate": "1998-02-06T00:00:00Z", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10826, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10826, - "CustomerID": "BLONP", - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00Z", - "RequiredDate": "1998-02-09T00:00:00Z", - "ShippedDate": "1998-02-06T00:00:00Z", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipRegion": null, - "ShipPostalCode": "67000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10826, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "BOLID", - "CompanyName": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "Region": null, - "PostalCode": "28023", - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10326, - "CustomerID": "BOLID", - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00Z", - "RequiredDate": "1996-11-07T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28023", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10326, - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10326, - "CustomerID": "BOLID", - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00Z", - "RequiredDate": "1996-11-07T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28023", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10326, - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10326, - "CustomerID": "BOLID", - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00Z", - "RequiredDate": "1996-11-07T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28023", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10326, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10801, - "CustomerID": "BOLID", - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00Z", - "RequiredDate": "1998-01-26T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28023", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10801, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10801, - "CustomerID": "BOLID", - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00Z", - "RequiredDate": "1998-01-26T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28023", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10801, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10970, - "CustomerID": "BOLID", - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00Z", - "RequiredDate": "1998-04-07T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28023", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10970, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "BONAP", - "CompanyName": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "Region": null, - "PostalCode": "13008", - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10331, - "CustomerID": "BONAP", - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00Z", - "RequiredDate": "1996-11-27T00:00:00Z", - "ShippedDate": "1996-10-21T00:00:00Z", - "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10331, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10340, - "CustomerID": "BONAP", - "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10340, - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10340, - "CustomerID": "BONAP", - "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10340, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10340, - "CustomerID": "BONAP", - "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10340, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10362, - "CustomerID": "BONAP", - "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00Z", - "RequiredDate": "1996-12-23T00:00:00Z", - "ShippedDate": "1996-11-28T00:00:00Z", - "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10362, - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10362, - "CustomerID": "BONAP", - "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00Z", - "RequiredDate": "1996-12-23T00:00:00Z", - "ShippedDate": "1996-11-28T00:00:00Z", - "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10362, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10362, - "CustomerID": "BONAP", - "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00Z", - "RequiredDate": "1996-12-23T00:00:00Z", - "ShippedDate": "1996-11-28T00:00:00Z", - "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10362, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10470, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10470, - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10470, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10470, - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10470, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10470, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10511, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00Z", - "RequiredDate": "1997-05-16T00:00:00Z", - "ShippedDate": "1997-04-21T00:00:00Z", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10511, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.15, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10511, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00Z", - "RequiredDate": "1997-05-16T00:00:00Z", - "ShippedDate": "1997-04-21T00:00:00Z", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10511, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.15, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10511, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00Z", - "RequiredDate": "1997-05-16T00:00:00Z", - "ShippedDate": "1997-04-21T00:00:00Z", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10511, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.15, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10525, - "CustomerID": "BONAP", - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00Z", - "RequiredDate": "1997-05-30T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10525, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10525, - "CustomerID": "BONAP", - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00Z", - "RequiredDate": "1997-05-30T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10525, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10663, - "CustomerID": "BONAP", - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00Z", - "RequiredDate": "1997-09-24T00:00:00Z", - "ShippedDate": "1997-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10663, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10663, - "CustomerID": "BONAP", - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00Z", - "RequiredDate": "1997-09-24T00:00:00Z", - "ShippedDate": "1997-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10663, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10663, - "CustomerID": "BONAP", - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00Z", - "RequiredDate": "1997-09-24T00:00:00Z", - "ShippedDate": "1997-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10663, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10715, - "CustomerID": "BONAP", - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00Z", - "RequiredDate": "1997-11-06T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10715, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10715, - "CustomerID": "BONAP", - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00Z", - "RequiredDate": "1997-11-06T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10715, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10730, - "CustomerID": "BONAP", - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00Z", - "RequiredDate": "1997-12-03T00:00:00Z", - "ShippedDate": "1997-11-14T00:00:00Z", - "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10730, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10730, - "CustomerID": "BONAP", - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00Z", - "RequiredDate": "1997-12-03T00:00:00Z", - "ShippedDate": "1997-11-14T00:00:00Z", - "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10730, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10730, - "CustomerID": "BONAP", - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00Z", - "RequiredDate": "1997-12-03T00:00:00Z", - "ShippedDate": "1997-11-14T00:00:00Z", - "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10730, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10732, - "CustomerID": "BONAP", - "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00Z", - "RequiredDate": "1997-12-04T00:00:00Z", - "ShippedDate": "1997-11-07T00:00:00Z", - "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10732, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10755, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00Z", - "RequiredDate": "1997-12-24T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10755, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10755, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00Z", - "RequiredDate": "1997-12-24T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10755, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10755, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00Z", - "RequiredDate": "1997-12-24T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10755, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 14, - "Discount": 0.25, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10755, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00Z", - "RequiredDate": "1997-12-24T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10755, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.25, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10827, - "CustomerID": "BONAP", - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00Z", - "RequiredDate": "1998-01-26T00:00:00Z", - "ShippedDate": "1998-02-06T00:00:00Z", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10827, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10827, - "CustomerID": "BONAP", - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00Z", - "RequiredDate": "1998-01-26T00:00:00Z", - "ShippedDate": "1998-02-06T00:00:00Z", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10827, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10871, - "CustomerID": "BONAP", - "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10871, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10871, - "CustomerID": "BONAP", - "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10871, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10871, - "CustomerID": "BONAP", - "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10871, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.05, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10876, - "CustomerID": "BONAP", - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00Z", - "RequiredDate": "1998-03-09T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10876, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10876, - "CustomerID": "BONAP", - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00Z", - "RequiredDate": "1998-03-09T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10876, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10932, - "CustomerID": "BONAP", - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-03T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10932, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10932, - "CustomerID": "BONAP", - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-03T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10932, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10932, - "CustomerID": "BONAP", - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-03T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10932, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10932, - "CustomerID": "BONAP", - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-03T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10932, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10940, - "CustomerID": "BONAP", - "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10940, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10940, - "CustomerID": "BONAP", - "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10940, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 11076, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11076, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11076, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11076, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 11076, - "CustomerID": "BONAP", - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipRegion": null, - "ShipPostalCode": "13008", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11076, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, - "Discount": 0.25, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "BOTTM", - "CompanyName": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": "T2F 8M4", - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10389, - "CustomerID": "BOTTM", - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00Z", - "RequiredDate": "1997-01-17T00:00:00Z", - "ShippedDate": "1996-12-24T00:00:00Z", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10389, - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10389, - "CustomerID": "BOTTM", - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00Z", - "RequiredDate": "1997-01-17T00:00:00Z", - "ShippedDate": "1996-12-24T00:00:00Z", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10389, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10389, - "CustomerID": "BOTTM", - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00Z", - "RequiredDate": "1997-01-17T00:00:00Z", - "ShippedDate": "1996-12-24T00:00:00Z", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10389, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10389, - "CustomerID": "BOTTM", - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00Z", - "RequiredDate": "1997-01-17T00:00:00Z", - "ShippedDate": "1996-12-24T00:00:00Z", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10389, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10410, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00Z", - "RequiredDate": "1997-02-07T00:00:00Z", - "ShippedDate": "1997-01-15T00:00:00Z", - "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10410, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10410, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00Z", - "RequiredDate": "1997-02-07T00:00:00Z", - "ShippedDate": "1997-01-15T00:00:00Z", - "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10410, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10411, - "CustomerID": "BOTTM", - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00Z", - "RequiredDate": "1997-02-07T00:00:00Z", - "ShippedDate": "1997-01-21T00:00:00Z", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10411, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.2, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10411, - "CustomerID": "BOTTM", - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00Z", - "RequiredDate": "1997-02-07T00:00:00Z", - "ShippedDate": "1997-01-21T00:00:00Z", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10411, - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10411, - "CustomerID": "BOTTM", - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00Z", - "RequiredDate": "1997-02-07T00:00:00Z", - "ShippedDate": "1997-01-21T00:00:00Z", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10411, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.2, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10431, - "CustomerID": "BOTTM", - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10431, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10431, - "CustomerID": "BOTTM", - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10431, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10431, - "CustomerID": "BOTTM", - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10431, - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10492, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00Z", - "RequiredDate": "1997-04-29T00:00:00Z", - "ShippedDate": "1997-04-11T00:00:00Z", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10492, - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10492, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00Z", - "RequiredDate": "1997-04-29T00:00:00Z", - "ShippedDate": "1997-04-11T00:00:00Z", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10492, - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10742, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00Z", - "RequiredDate": "1997-12-12T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10742, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10742, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00Z", - "RequiredDate": "1997-12-12T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10742, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10742, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00Z", - "RequiredDate": "1997-12-12T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10742, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10918, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-11T00:00:00Z", - "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10918, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10918, - "CustomerID": "BOTTM", - "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-11T00:00:00Z", - "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10918, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10944, - "CustomerID": "BOTTM", - "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10944, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10944, - "CustomerID": "BOTTM", - "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10944, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10944, - "CustomerID": "BOTTM", - "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10944, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10949, - "CustomerID": "BOTTM", - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00Z", - "RequiredDate": "1998-04-10T00:00:00Z", - "ShippedDate": "1998-03-17T00:00:00Z", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10949, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10949, - "CustomerID": "BOTTM", - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00Z", - "RequiredDate": "1998-04-10T00:00:00Z", - "ShippedDate": "1998-03-17T00:00:00Z", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10949, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10949, - "CustomerID": "BOTTM", - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00Z", - "RequiredDate": "1998-04-10T00:00:00Z", - "ShippedDate": "1998-03-17T00:00:00Z", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10949, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10949, - "CustomerID": "BOTTM", - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00Z", - "RequiredDate": "1998-04-10T00:00:00Z", - "ShippedDate": "1998-03-17T00:00:00Z", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10949, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10975, - "CustomerID": "BOTTM", - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00Z", - "RequiredDate": "1998-04-22T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 3, - "Freight": 32.27, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10975, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10975, - "CustomerID": "BOTTM", - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00Z", - "RequiredDate": "1998-04-22T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 3, - "Freight": 32.27, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10975, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10982, - "CustomerID": "BOTTM", - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00Z", - "RequiredDate": "1998-04-24T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 14.01, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10982, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10982, - "CustomerID": "BOTTM", - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00Z", - "RequiredDate": "1998-04-24T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 14.01, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10982, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11027, - "CustomerID": "BOTTM", - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00Z", - "RequiredDate": "1998-05-14T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11027, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11027, - "CustomerID": "BOTTM", - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00Z", - "RequiredDate": "1998-05-14T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11027, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11045, - "CustomerID": "BOTTM", - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00Z", - "RequiredDate": "1998-05-21T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11045, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11045, - "CustomerID": "BOTTM", - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00Z", - "RequiredDate": "1998-05-21T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11045, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11048, - "CustomerID": "BOTTM", - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00Z", - "RequiredDate": "1998-05-22T00:00:00Z", - "ShippedDate": "1998-04-30T00:00:00Z", - "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": "T2F 8M4", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11048, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "BSBEV", - "CompanyName": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "Region": null, - "PostalCode": "EC2 5NT", - "Country": "UK", - "Phone": "(171) 555-1212", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10289, - "CustomerID": "BSBEV", - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00Z", - "RequiredDate": "1996-09-23T00:00:00Z", - "ShippedDate": "1996-08-28T00:00:00Z", - "ShipVia": 3, - "Freight": 22.77, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10289, - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10289, - "CustomerID": "BSBEV", - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00Z", - "RequiredDate": "1996-09-23T00:00:00Z", - "ShippedDate": "1996-08-28T00:00:00Z", - "ShipVia": 3, - "Freight": 22.77, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10289, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10471, - "CustomerID": "BSBEV", - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10471, - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10471, - "CustomerID": "BSBEV", - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10471, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10484, - "CustomerID": "BSBEV", - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00Z", - "RequiredDate": "1997-04-21T00:00:00Z", - "ShippedDate": "1997-04-01T00:00:00Z", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10484, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10484, - "CustomerID": "BSBEV", - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00Z", - "RequiredDate": "1997-04-21T00:00:00Z", - "ShippedDate": "1997-04-01T00:00:00Z", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10484, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10484, - "CustomerID": "BSBEV", - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00Z", - "RequiredDate": "1997-04-21T00:00:00Z", - "ShippedDate": "1997-04-01T00:00:00Z", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10484, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10538, - "CustomerID": "BSBEV", - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00Z", - "RequiredDate": "1997-06-12T00:00:00Z", - "ShippedDate": "1997-05-16T00:00:00Z", - "ShipVia": 3, - "Freight": 4.87, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10538, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10538, - "CustomerID": "BSBEV", - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00Z", - "RequiredDate": "1997-06-12T00:00:00Z", - "ShippedDate": "1997-05-16T00:00:00Z", - "ShipVia": 3, - "Freight": 4.87, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10538, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10539, - "CustomerID": "BSBEV", - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00Z", - "RequiredDate": "1997-06-13T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10539, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10539, - "CustomerID": "BSBEV", - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00Z", - "RequiredDate": "1997-06-13T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10539, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10539, - "CustomerID": "BSBEV", - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00Z", - "RequiredDate": "1997-06-13T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10539, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10539, - "CustomerID": "BSBEV", - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00Z", - "RequiredDate": "1997-06-13T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10539, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10578, - "CustomerID": "BSBEV", - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00Z", - "RequiredDate": "1997-07-22T00:00:00Z", - "ShippedDate": "1997-07-25T00:00:00Z", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10578, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10578, - "CustomerID": "BSBEV", - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00Z", - "RequiredDate": "1997-07-22T00:00:00Z", - "ShippedDate": "1997-07-25T00:00:00Z", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10578, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10599, - "CustomerID": "BSBEV", - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00Z", - "RequiredDate": "1997-08-26T00:00:00Z", - "ShippedDate": "1997-07-21T00:00:00Z", - "ShipVia": 3, - "Freight": 29.98, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10599, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10943, - "CustomerID": "BSBEV", - "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 2, - "Freight": 2.17, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10943, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10943, - "CustomerID": "BSBEV", - "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 2, - "Freight": 2.17, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10943, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10943, - "CustomerID": "BSBEV", - "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 2, - "Freight": 2.17, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10943, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10947, - "CustomerID": "BSBEV", - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00Z", - "RequiredDate": "1998-04-10T00:00:00Z", - "ShippedDate": "1998-03-16T00:00:00Z", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10947, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11023, - "CustomerID": "BSBEV", - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11023, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11023, - "CustomerID": "BSBEV", - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "EC2 5NT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11023, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "CACTU", - "CompanyName": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "Region": null, - "PostalCode": "1010", - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10521, - "CustomerID": "CACTU", - "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00Z", - "RequiredDate": "1997-05-27T00:00:00Z", - "ShippedDate": "1997-05-02T00:00:00Z", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10521, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10521, - "CustomerID": "CACTU", - "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00Z", - "RequiredDate": "1997-05-27T00:00:00Z", - "ShippedDate": "1997-05-02T00:00:00Z", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10521, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10521, - "CustomerID": "CACTU", - "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00Z", - "RequiredDate": "1997-05-27T00:00:00Z", - "ShippedDate": "1997-05-02T00:00:00Z", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10521, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10782, - "CustomerID": "CACTU", - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00Z", - "RequiredDate": "1998-01-14T00:00:00Z", - "ShippedDate": "1997-12-22T00:00:00Z", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10782, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10819, - "CustomerID": "CACTU", - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10819, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10819, - "CustomerID": "CACTU", - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10819, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10881, - "CustomerID": "CACTU", - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00Z", - "RequiredDate": "1998-03-11T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10881, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10937, - "CustomerID": "CACTU", - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10937, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10937, - "CustomerID": "CACTU", - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10937, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11054, - "CustomerID": "CACTU", - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-26T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11054, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11054, - "CustomerID": "CACTU", - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-26T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11054, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "CENTC", - "CompanyName": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "Region": null, - "PostalCode": "05022", - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10259, - "CustomerID": "CENTC", - "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00Z", - "RequiredDate": "1996-08-15T00:00:00Z", - "ShippedDate": "1996-07-25T00:00:00Z", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05022", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10259, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10259, - "CustomerID": "CENTC", - "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00Z", - "RequiredDate": "1996-08-15T00:00:00Z", - "ShippedDate": "1996-07-25T00:00:00Z", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05022", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10259, - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 37, - "ProductName": "Gravad lax", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "12 - 500 g pkgs.", - "UnitPrice": 26, - "UnitsInStock": 11, - "UnitsOnOrder": 50, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "CHOPS", - "CompanyName": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "Region": null, - "PostalCode": "3012", - "Country": "Switzerland", - "Phone": "0452-076545", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10254, - "CustomerID": "CHOPS", - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00Z", - "RequiredDate": "1996-08-08T00:00:00Z", - "ShippedDate": "1996-07-23T00:00:00Z", - "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10254, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10254, - "CustomerID": "CHOPS", - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00Z", - "RequiredDate": "1996-08-08T00:00:00Z", - "ShippedDate": "1996-07-23T00:00:00Z", - "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10254, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.15, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10254, - "CustomerID": "CHOPS", - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00Z", - "RequiredDate": "1996-08-08T00:00:00Z", - "ShippedDate": "1996-07-23T00:00:00Z", - "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10254, - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10370, - "CustomerID": "CHOPS", - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00Z", - "RequiredDate": "1996-12-31T00:00:00Z", - "ShippedDate": "1996-12-27T00:00:00Z", - "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10370, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10370, - "CustomerID": "CHOPS", - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00Z", - "RequiredDate": "1996-12-31T00:00:00Z", - "ShippedDate": "1996-12-27T00:00:00Z", - "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10370, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10370, - "CustomerID": "CHOPS", - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00Z", - "RequiredDate": "1996-12-31T00:00:00Z", - "ShippedDate": "1996-12-27T00:00:00Z", - "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10370, - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10519, - "CustomerID": "CHOPS", - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00Z", - "RequiredDate": "1997-05-26T00:00:00Z", - "ShippedDate": "1997-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10519, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0.05, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10519, - "CustomerID": "CHOPS", - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00Z", - "RequiredDate": "1997-05-26T00:00:00Z", - "ShippedDate": "1997-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10519, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10519, - "CustomerID": "CHOPS", - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00Z", - "RequiredDate": "1997-05-26T00:00:00Z", - "ShippedDate": "1997-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10519, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10731, - "CustomerID": "CHOPS", - "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00Z", - "RequiredDate": "1997-12-04T00:00:00Z", - "ShippedDate": "1997-11-14T00:00:00Z", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10731, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10731, - "CustomerID": "CHOPS", - "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00Z", - "RequiredDate": "1997-12-04T00:00:00Z", - "ShippedDate": "1997-11-14T00:00:00Z", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10731, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10746, - "CustomerID": "CHOPS", - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00Z", - "RequiredDate": "1997-12-17T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10746, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10746, - "CustomerID": "CHOPS", - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00Z", - "RequiredDate": "1997-12-17T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10746, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10746, - "CustomerID": "CHOPS", - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00Z", - "RequiredDate": "1997-12-17T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10746, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10746, - "CustomerID": "CHOPS", - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00Z", - "RequiredDate": "1997-12-17T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10746, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10966, - "CustomerID": "CHOPS", - "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10966, - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 37, - "ProductName": "Gravad lax", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "12 - 500 g pkgs.", - "UnitPrice": 26, - "UnitsInStock": 11, - "UnitsOnOrder": 50, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10966, - "CustomerID": "CHOPS", - "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10966, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.15, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10966, - "CustomerID": "CHOPS", - "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10966, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.15, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11029, - "CustomerID": "CHOPS", - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00Z", - "RequiredDate": "1998-05-14T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11029, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11029, - "CustomerID": "CHOPS", - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00Z", - "RequiredDate": "1998-05-14T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11029, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11041, - "CustomerID": "CHOPS", - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00Z", - "RequiredDate": "1998-05-20T00:00:00Z", - "ShippedDate": "1998-04-28T00:00:00Z", - "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11041, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11041, - "CustomerID": "CHOPS", - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00Z", - "RequiredDate": "1998-05-20T00:00:00Z", - "ShippedDate": "1998-04-28T00:00:00Z", - "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipRegion": null, - "ShipPostalCode": "3012", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11041, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "COMMI", - "CompanyName": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": "05432-043", - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10290, - "CustomerID": "COMMI", - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00Z", - "RequiredDate": "1996-09-24T00:00:00Z", - "ShippedDate": "1996-09-03T00:00:00Z", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10290, - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10290, - "CustomerID": "COMMI", - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00Z", - "RequiredDate": "1996-09-24T00:00:00Z", - "ShippedDate": "1996-09-03T00:00:00Z", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10290, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10290, - "CustomerID": "COMMI", - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00Z", - "RequiredDate": "1996-09-24T00:00:00Z", - "ShippedDate": "1996-09-03T00:00:00Z", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10290, - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10290, - "CustomerID": "COMMI", - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00Z", - "RequiredDate": "1996-09-24T00:00:00Z", - "ShippedDate": "1996-09-03T00:00:00Z", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10290, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10466, - "CustomerID": "COMMI", - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00Z", - "RequiredDate": "1997-04-03T00:00:00Z", - "ShippedDate": "1997-03-13T00:00:00Z", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10466, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10466, - "CustomerID": "COMMI", - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00Z", - "RequiredDate": "1997-04-03T00:00:00Z", - "ShippedDate": "1997-03-13T00:00:00Z", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10466, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10494, - "CustomerID": "COMMI", - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00Z", - "RequiredDate": "1997-04-30T00:00:00Z", - "ShippedDate": "1997-04-09T00:00:00Z", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10494, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10969, - "CustomerID": "COMMI", - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00Z", - "RequiredDate": "1998-04-20T00:00:00Z", - "ShippedDate": "1998-03-30T00:00:00Z", - "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10969, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11042, - "CustomerID": "COMMI", - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11042, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11042, - "CustomerID": "COMMI", - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05432-043", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11042, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "CONSH", - "CompanyName": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "Region": null, - "PostalCode": "WX1 6LT", - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10435, - "CustomerID": "CONSH", - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00Z", - "RequiredDate": "1997-03-18T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX1 6LT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10435, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10435, - "CustomerID": "CONSH", - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00Z", - "RequiredDate": "1997-03-18T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX1 6LT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10435, - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10435, - "CustomerID": "CONSH", - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00Z", - "RequiredDate": "1997-03-18T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX1 6LT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10435, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10462, - "CustomerID": "CONSH", - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00Z", - "RequiredDate": "1997-03-31T00:00:00Z", - "ShippedDate": "1997-03-18T00:00:00Z", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX1 6LT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10462, - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10462, - "CustomerID": "CONSH", - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00Z", - "RequiredDate": "1997-03-31T00:00:00Z", - "ShippedDate": "1997-03-18T00:00:00Z", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX1 6LT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10462, - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10848, - "CustomerID": "CONSH", - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00Z", - "RequiredDate": "1998-02-20T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX1 6LT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10848, - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10848, - "CustomerID": "CONSH", - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00Z", - "RequiredDate": "1998-02-20T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX1 6LT", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10848, - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 9, - "ProductName": "Mishi Kobe Niku", - "SupplierID": 4, - "CategoryID": 6, - "QuantityPerUnit": "18 - 500 g pkgs.", - "UnitPrice": 97, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "DRACD", - "CompanyName": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "Region": null, - "PostalCode": "52066", - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10363, - "CustomerID": "DRACD", - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00Z", - "RequiredDate": "1996-12-24T00:00:00Z", - "ShippedDate": "1996-12-04T00:00:00Z", - "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10363, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10363, - "CustomerID": "DRACD", - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00Z", - "RequiredDate": "1996-12-24T00:00:00Z", - "ShippedDate": "1996-12-04T00:00:00Z", - "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10363, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10363, - "CustomerID": "DRACD", - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00Z", - "RequiredDate": "1996-12-24T00:00:00Z", - "ShippedDate": "1996-12-04T00:00:00Z", - "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10363, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10391, - "CustomerID": "DRACD", - "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00Z", - "RequiredDate": "1997-01-20T00:00:00Z", - "ShippedDate": "1996-12-31T00:00:00Z", - "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10391, - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10797, - "CustomerID": "DRACD", - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00Z", - "RequiredDate": "1998-01-22T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10797, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10825, - "CustomerID": "DRACD", - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10825, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10825, - "CustomerID": "DRACD", - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10825, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11036, - "CustomerID": "DRACD", - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-05-18T00:00:00Z", - "ShippedDate": "1998-04-22T00:00:00Z", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11036, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 11036, - "CustomerID": "DRACD", - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-05-18T00:00:00Z", - "ShippedDate": "1998-04-22T00:00:00Z", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11036, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11067, - "CustomerID": "DRACD", - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00Z", - "RequiredDate": "1998-05-18T00:00:00Z", - "ShippedDate": "1998-05-06T00:00:00Z", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipRegion": null, - "ShipPostalCode": "52066", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11067, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "DUMON", - "CompanyName": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "Region": null, - "PostalCode": "44000", - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10311, - "CustomerID": "DUMON", - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00Z", - "RequiredDate": "1996-10-04T00:00:00Z", - "ShippedDate": "1996-09-26T00:00:00Z", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10311, - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10311, - "CustomerID": "DUMON", - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00Z", - "RequiredDate": "1996-10-04T00:00:00Z", - "ShippedDate": "1996-09-26T00:00:00Z", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10311, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10609, - "CustomerID": "DUMON", - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00Z", - "RequiredDate": "1997-08-21T00:00:00Z", - "ShippedDate": "1997-07-30T00:00:00Z", - "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10609, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10609, - "CustomerID": "DUMON", - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00Z", - "RequiredDate": "1997-08-21T00:00:00Z", - "ShippedDate": "1997-07-30T00:00:00Z", - "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10609, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10609, - "CustomerID": "DUMON", - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00Z", - "RequiredDate": "1997-08-21T00:00:00Z", - "ShippedDate": "1997-07-30T00:00:00Z", - "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10609, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10683, - "CustomerID": "DUMON", - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00Z", - "RequiredDate": "1997-10-24T00:00:00Z", - "ShippedDate": "1997-10-01T00:00:00Z", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10683, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10890, - "CustomerID": "DUMON", - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00Z", - "RequiredDate": "1998-03-16T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10890, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10890, - "CustomerID": "DUMON", - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00Z", - "RequiredDate": "1998-03-16T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10890, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10890, - "CustomerID": "DUMON", - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00Z", - "RequiredDate": "1998-03-16T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10890, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "EASTC", - "CompanyName": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "Region": null, - "PostalCode": "WX3 6FW", - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10364, - "CustomerID": "EASTC", - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00Z", - "RequiredDate": "1997-01-07T00:00:00Z", - "ShippedDate": "1996-12-04T00:00:00Z", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10364, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10364, - "CustomerID": "EASTC", - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00Z", - "RequiredDate": "1997-01-07T00:00:00Z", - "ShippedDate": "1996-12-04T00:00:00Z", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10364, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10400, - "CustomerID": "EASTC", - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00Z", - "RequiredDate": "1997-01-29T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10400, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10400, - "CustomerID": "EASTC", - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00Z", - "RequiredDate": "1997-01-29T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10400, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10400, - "CustomerID": "EASTC", - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00Z", - "RequiredDate": "1997-01-29T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10400, - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10532, - "CustomerID": "EASTC", - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00Z", - "RequiredDate": "1997-06-06T00:00:00Z", - "ShippedDate": "1997-05-12T00:00:00Z", - "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10532, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10532, - "CustomerID": "EASTC", - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00Z", - "RequiredDate": "1997-06-06T00:00:00Z", - "ShippedDate": "1997-05-12T00:00:00Z", - "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10532, - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 66, - "ProductName": "Louisiana Hot Spiced Okra", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "24 - 8 oz jars", - "UnitPrice": 17, - "UnitsInStock": 4, - "UnitsOnOrder": 100, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10726, - "CustomerID": "EASTC", - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00Z", - "RequiredDate": "1997-11-17T00:00:00Z", - "ShippedDate": "1997-12-05T00:00:00Z", - "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10726, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10726, - "CustomerID": "EASTC", - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00Z", - "RequiredDate": "1997-11-17T00:00:00Z", - "ShippedDate": "1997-12-05T00:00:00Z", - "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10726, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10987, - "CustomerID": "EASTC", - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-06T00:00:00Z", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10987, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10987, - "CustomerID": "EASTC", - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-06T00:00:00Z", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10987, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10987, - "CustomerID": "EASTC", - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-06T00:00:00Z", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10987, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 11024, - "CustomerID": "EASTC", - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11024, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11024, - "CustomerID": "EASTC", - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11024, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11024, - "CustomerID": "EASTC", - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11024, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 11024, - "CustomerID": "EASTC", - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11024, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11047, - "CustomerID": "EASTC", - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00Z", - "RequiredDate": "1998-05-22T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11047, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11047, - "CustomerID": "EASTC", - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00Z", - "RequiredDate": "1998-05-22T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11047, - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 11056, - "CustomerID": "EASTC", - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11056, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11056, - "CustomerID": "EASTC", - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11056, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11056, - "CustomerID": "EASTC", - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "WX3 6FW", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11056, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "ERNSH", - "CompanyName": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "Region": null, - "PostalCode": "8010", - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10258, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00Z", - "RequiredDate": "1996-08-14T00:00:00Z", - "ShippedDate": "1996-07-23T00:00:00Z", - "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10258, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10258, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00Z", - "RequiredDate": "1996-08-14T00:00:00Z", - "ShippedDate": "1996-07-23T00:00:00Z", - "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10258, - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10258, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00Z", - "RequiredDate": "1996-08-14T00:00:00Z", - "ShippedDate": "1996-07-23T00:00:00Z", - "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10258, - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10263, - "CustomerID": "ERNSH", - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00Z", - "RequiredDate": "1996-08-20T00:00:00Z", - "ShippedDate": "1996-07-31T00:00:00Z", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10263, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10263, - "CustomerID": "ERNSH", - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00Z", - "RequiredDate": "1996-08-20T00:00:00Z", - "ShippedDate": "1996-07-31T00:00:00Z", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10263, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10263, - "CustomerID": "ERNSH", - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00Z", - "RequiredDate": "1996-08-20T00:00:00Z", - "ShippedDate": "1996-07-31T00:00:00Z", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10263, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10263, - "CustomerID": "ERNSH", - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00Z", - "RequiredDate": "1996-08-20T00:00:00Z", - "ShippedDate": "1996-07-31T00:00:00Z", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10263, - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10351, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00Z", - "RequiredDate": "1996-12-09T00:00:00Z", - "ShippedDate": "1996-11-20T00:00:00Z", - "ShipVia": 1, - "Freight": 162.33, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10351, - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10351, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00Z", - "RequiredDate": "1996-12-09T00:00:00Z", - "ShippedDate": "1996-11-20T00:00:00Z", - "ShipVia": 1, - "Freight": 162.33, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10351, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 13, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10351, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00Z", - "RequiredDate": "1996-12-09T00:00:00Z", - "ShippedDate": "1996-11-20T00:00:00Z", - "ShipVia": 1, - "Freight": 162.33, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10351, - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.05, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10351, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00Z", - "RequiredDate": "1996-12-09T00:00:00Z", - "ShippedDate": "1996-11-20T00:00:00Z", - "ShipVia": 1, - "Freight": 162.33, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10351, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10368, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00Z", - "RequiredDate": "1996-12-27T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10368, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10368, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00Z", - "RequiredDate": "1996-12-27T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10368, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10368, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00Z", - "RequiredDate": "1996-12-27T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10368, - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10368, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00Z", - "RequiredDate": "1996-12-27T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10368, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10382, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00Z", - "RequiredDate": "1997-01-10T00:00:00Z", - "ShippedDate": "1996-12-16T00:00:00Z", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10382, - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, - "Discount": 0, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10382, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00Z", - "RequiredDate": "1997-01-10T00:00:00Z", - "ShippedDate": "1996-12-16T00:00:00Z", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10382, - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10382, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00Z", - "RequiredDate": "1997-01-10T00:00:00Z", - "ShippedDate": "1996-12-16T00:00:00Z", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10382, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10382, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00Z", - "RequiredDate": "1997-01-10T00:00:00Z", - "ShippedDate": "1996-12-16T00:00:00Z", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10382, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10382, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00Z", - "RequiredDate": "1997-01-10T00:00:00Z", - "ShippedDate": "1996-12-16T00:00:00Z", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10382, - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10390, - "CustomerID": "ERNSH", - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00Z", - "RequiredDate": "1997-01-20T00:00:00Z", - "ShippedDate": "1996-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10390, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10390, - "CustomerID": "ERNSH", - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00Z", - "RequiredDate": "1997-01-20T00:00:00Z", - "ShippedDate": "1996-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10390, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10390, - "CustomerID": "ERNSH", - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00Z", - "RequiredDate": "1997-01-20T00:00:00Z", - "ShippedDate": "1996-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10390, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10390, - "CustomerID": "ERNSH", - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00Z", - "RequiredDate": "1997-01-20T00:00:00Z", - "ShippedDate": "1996-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10390, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, - "Discount": 0.1, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10402, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-10T00:00:00Z", - "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10402, - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10402, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-10T00:00:00Z", - "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10402, - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10403, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00Z", - "RequiredDate": "1997-01-31T00:00:00Z", - "ShippedDate": "1997-01-09T00:00:00Z", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10403, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.15, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10403, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00Z", - "RequiredDate": "1997-01-31T00:00:00Z", - "ShippedDate": "1997-01-09T00:00:00Z", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10403, - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.15, - "Products": [ - { - "ProductID": 48, - "ProductName": "Chocolade", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 pkgs.", - "UnitPrice": 12.75, - "UnitsInStock": 15, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10430, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-02-03T00:00:00Z", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10430, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10430, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-02-03T00:00:00Z", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10430, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10430, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-02-03T00:00:00Z", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10430, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10430, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-02-03T00:00:00Z", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10430, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10442, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00Z", - "RequiredDate": "1997-03-11T00:00:00Z", - "ShippedDate": "1997-02-18T00:00:00Z", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10442, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10442, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00Z", - "RequiredDate": "1997-03-11T00:00:00Z", - "ShippedDate": "1997-02-18T00:00:00Z", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10442, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10442, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00Z", - "RequiredDate": "1997-03-11T00:00:00Z", - "ShippedDate": "1997-02-18T00:00:00Z", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10442, - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 66, - "ProductName": "Louisiana Hot Spiced Okra", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "24 - 8 oz jars", - "UnitPrice": 17, - "UnitsInStock": 4, - "UnitsOnOrder": 100, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10514, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00Z", - "RequiredDate": "1997-05-20T00:00:00Z", - "ShippedDate": "1997-05-16T00:00:00Z", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10514, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 39, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10514, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00Z", - "RequiredDate": "1997-05-20T00:00:00Z", - "ShippedDate": "1997-05-16T00:00:00Z", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10514, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10514, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00Z", - "RequiredDate": "1997-05-20T00:00:00Z", - "ShippedDate": "1997-05-16T00:00:00Z", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10514, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10514, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00Z", - "RequiredDate": "1997-05-20T00:00:00Z", - "ShippedDate": "1997-05-16T00:00:00Z", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10514, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10514, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00Z", - "RequiredDate": "1997-05-20T00:00:00Z", - "ShippedDate": "1997-05-16T00:00:00Z", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10514, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10571, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00Z", - "RequiredDate": "1997-07-29T00:00:00Z", - "ShippedDate": "1997-07-04T00:00:00Z", - "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10571, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.15, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10571, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00Z", - "RequiredDate": "1997-07-29T00:00:00Z", - "ShippedDate": "1997-07-04T00:00:00Z", - "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10571, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.15, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10595, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00Z", - "RequiredDate": "1997-08-07T00:00:00Z", - "ShippedDate": "1997-07-14T00:00:00Z", - "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10595, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10595, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00Z", - "RequiredDate": "1997-08-07T00:00:00Z", - "ShippedDate": "1997-07-14T00:00:00Z", - "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10595, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10595, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00Z", - "RequiredDate": "1997-08-07T00:00:00Z", - "ShippedDate": "1997-07-14T00:00:00Z", - "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10595, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10633, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-18T00:00:00Z", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10633, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.15, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10633, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-18T00:00:00Z", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10633, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.15, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10633, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-18T00:00:00Z", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10633, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.15, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10633, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-18T00:00:00Z", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10633, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.15, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10667, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00Z", - "RequiredDate": "1997-10-10T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10667, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, - "Discount": 0.2, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10667, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00Z", - "RequiredDate": "1997-10-10T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10667, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, - "Discount": 0.2, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10698, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00Z", - "RequiredDate": "1997-11-06T00:00:00Z", - "ShippedDate": "1997-10-17T00:00:00Z", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10698, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10698, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00Z", - "RequiredDate": "1997-11-06T00:00:00Z", - "ShippedDate": "1997-10-17T00:00:00Z", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10698, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.05, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10698, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00Z", - "RequiredDate": "1997-11-06T00:00:00Z", - "ShippedDate": "1997-10-17T00:00:00Z", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10698, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10698, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00Z", - "RequiredDate": "1997-11-06T00:00:00Z", - "ShippedDate": "1997-10-17T00:00:00Z", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10698, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, - "Discount": 0.05, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10698, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00Z", - "RequiredDate": "1997-11-06T00:00:00Z", - "ShippedDate": "1997-10-17T00:00:00Z", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10698, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, - "Discount": 0.05, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10764, - "CustomerID": "ERNSH", - "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00Z", - "RequiredDate": "1997-12-31T00:00:00Z", - "ShippedDate": "1997-12-08T00:00:00Z", - "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10764, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10764, - "CustomerID": "ERNSH", - "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00Z", - "RequiredDate": "1997-12-31T00:00:00Z", - "ShippedDate": "1997-12-08T00:00:00Z", - "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10764, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10771, - "CustomerID": "ERNSH", - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00Z", - "RequiredDate": "1998-01-07T00:00:00Z", - "ShippedDate": "1998-01-02T00:00:00Z", - "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10771, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10773, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00Z", - "RequiredDate": "1998-01-08T00:00:00Z", - "ShippedDate": "1997-12-16T00:00:00Z", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10773, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10773, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00Z", - "RequiredDate": "1998-01-08T00:00:00Z", - "ShippedDate": "1997-12-16T00:00:00Z", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10773, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10773, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00Z", - "RequiredDate": "1998-01-08T00:00:00Z", - "ShippedDate": "1997-12-16T00:00:00Z", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10773, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 7, - "Discount": 0.2, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10776, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00Z", - "RequiredDate": "1998-01-12T00:00:00Z", - "ShippedDate": "1997-12-18T00:00:00Z", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10776, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10776, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00Z", - "RequiredDate": "1998-01-12T00:00:00Z", - "ShippedDate": "1997-12-18T00:00:00Z", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10776, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10776, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00Z", - "RequiredDate": "1998-01-12T00:00:00Z", - "ShippedDate": "1997-12-18T00:00:00Z", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10776, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.05, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10776, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00Z", - "RequiredDate": "1998-01-12T00:00:00Z", - "ShippedDate": "1997-12-18T00:00:00Z", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10776, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.05, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10795, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00Z", - "RequiredDate": "1998-01-21T00:00:00Z", - "ShippedDate": "1998-01-20T00:00:00Z", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10795, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10795, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00Z", - "RequiredDate": "1998-01-21T00:00:00Z", - "ShippedDate": "1998-01-20T00:00:00Z", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10795, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10836, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10836, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10836, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10836, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10836, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10836, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10836, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10836, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10836, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00Z", - "RequiredDate": "1998-02-13T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10836, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10854, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-02-05T00:00:00Z", - "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10854, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.15, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10854, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-02-05T00:00:00Z", - "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10854, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.15, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10895, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10895, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10895, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10895, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10895, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10895, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10895, - "CustomerID": "ERNSH", - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10895, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10968, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00Z", - "RequiredDate": "1998-04-20T00:00:00Z", - "ShippedDate": "1998-04-01T00:00:00Z", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10968, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10968, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00Z", - "RequiredDate": "1998-04-20T00:00:00Z", - "ShippedDate": "1998-04-01T00:00:00Z", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10968, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10968, - "CustomerID": "ERNSH", - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00Z", - "RequiredDate": "1998-04-20T00:00:00Z", - "ShippedDate": "1998-04-01T00:00:00Z", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10968, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10979, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10979, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10979, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10979, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10979, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10979, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10979, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10979, - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10979, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10979, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10979, - "CustomerID": "ERNSH", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10979, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10990, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10990, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10990, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10990, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.15, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10990, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10990, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.15, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10990, - "CustomerID": "ERNSH", - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10990, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.15, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11008, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11008, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.05, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11008, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11008, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.05, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11008, - "CustomerID": "ERNSH", - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11008, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11017, - "CustomerID": "ERNSH", - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00Z", - "RequiredDate": "1998-05-11T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11017, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11017, - "CustomerID": "ERNSH", - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00Z", - "RequiredDate": "1998-05-11T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11017, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11017, - "CustomerID": "ERNSH", - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00Z", - "RequiredDate": "1998-05-11T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11017, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11072, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11072, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11072, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11072, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11072, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11072, - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, - "Discount": 0, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11072, - "CustomerID": "ERNSH", - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipRegion": null, - "ShipPostalCode": "8010", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11072, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "FAMIA", - "CompanyName": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": "05442-030", - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10347, - "CustomerID": "FAMIA", - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00Z", - "RequiredDate": "1996-12-04T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10347, - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10347, - "CustomerID": "FAMIA", - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00Z", - "RequiredDate": "1996-12-04T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10347, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.15, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10347, - "CustomerID": "FAMIA", - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00Z", - "RequiredDate": "1996-12-04T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10347, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10347, - "CustomerID": "FAMIA", - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00Z", - "RequiredDate": "1996-12-04T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10347, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.15, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10386, - "CustomerID": "FAMIA", - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00Z", - "RequiredDate": "1997-01-01T00:00:00Z", - "ShippedDate": "1996-12-25T00:00:00Z", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10386, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10386, - "CustomerID": "FAMIA", - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00Z", - "RequiredDate": "1997-01-01T00:00:00Z", - "ShippedDate": "1996-12-25T00:00:00Z", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10386, - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10414, - "CustomerID": "FAMIA", - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00Z", - "RequiredDate": "1997-02-11T00:00:00Z", - "ShippedDate": "1997-01-17T00:00:00Z", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10414, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.05, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10414, - "CustomerID": "FAMIA", - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00Z", - "RequiredDate": "1997-02-11T00:00:00Z", - "ShippedDate": "1997-01-17T00:00:00Z", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10414, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10512, - "CustomerID": "FAMIA", - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00Z", - "RequiredDate": "1997-05-19T00:00:00Z", - "ShippedDate": "1997-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10512, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.15, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10512, - "CustomerID": "FAMIA", - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00Z", - "RequiredDate": "1997-05-19T00:00:00Z", - "ShippedDate": "1997-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10512, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.15, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10512, - "CustomerID": "FAMIA", - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00Z", - "RequiredDate": "1997-05-19T00:00:00Z", - "ShippedDate": "1997-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10512, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.15, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10512, - "CustomerID": "FAMIA", - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00Z", - "RequiredDate": "1997-05-19T00:00:00Z", - "ShippedDate": "1997-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10512, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.15, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10581, - "CustomerID": "FAMIA", - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00Z", - "RequiredDate": "1997-07-24T00:00:00Z", - "ShippedDate": "1997-07-02T00:00:00Z", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10581, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10650, - "CustomerID": "FAMIA", - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00Z", - "RequiredDate": "1997-09-26T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10650, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10650, - "CustomerID": "FAMIA", - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00Z", - "RequiredDate": "1997-09-26T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10650, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.05, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10650, - "CustomerID": "FAMIA", - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00Z", - "RequiredDate": "1997-09-26T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10650, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10725, - "CustomerID": "FAMIA", - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00Z", - "RequiredDate": "1997-11-28T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10725, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10725, - "CustomerID": "FAMIA", - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00Z", - "RequiredDate": "1997-11-28T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10725, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10725, - "CustomerID": "FAMIA", - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00Z", - "RequiredDate": "1997-11-28T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05442-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10725, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "FISSA", - "CompanyName": "FISSA Fabrica Inter. Salchichas S.A.", - "ContactName": "Diego Roel", - "ContactTitle": "Accounting Manager", - "Address": "C/ Moralzarzal, 86", - "City": "Madrid", - "Region": null, - "PostalCode": "28034", - "Country": "Spain", - "Phone": "(91) 555 94 44", - "Fax": "(91) 555 55 93", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": null - }, - { - "CustomerID": "FOLIG", - "CompanyName": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Assistant Sales Agent", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "Region": null, - "PostalCode": "59000", - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10408, - "CustomerID": "FOLIG", - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00Z", - "RequiredDate": "1997-02-05T00:00:00Z", - "ShippedDate": "1997-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10408, - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 37, - "ProductName": "Gravad lax", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "12 - 500 g pkgs.", - "UnitPrice": 26, - "UnitsInStock": 11, - "UnitsOnOrder": 50, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10408, - "CustomerID": "FOLIG", - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00Z", - "RequiredDate": "1997-02-05T00:00:00Z", - "ShippedDate": "1997-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10408, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10408, - "CustomerID": "FOLIG", - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00Z", - "RequiredDate": "1997-02-05T00:00:00Z", - "ShippedDate": "1997-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10408, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10480, - "CustomerID": "FOLIG", - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00Z", - "RequiredDate": "1997-04-17T00:00:00Z", - "ShippedDate": "1997-03-24T00:00:00Z", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10480, - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10480, - "CustomerID": "FOLIG", - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00Z", - "RequiredDate": "1997-04-17T00:00:00Z", - "ShippedDate": "1997-03-24T00:00:00Z", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10480, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10634, - "CustomerID": "FOLIG", - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10634, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10634, - "CustomerID": "FOLIG", - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10634, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10634, - "CustomerID": "FOLIG", - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10634, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10634, - "CustomerID": "FOLIG", - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10634, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10763, - "CustomerID": "FOLIG", - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00Z", - "RequiredDate": "1997-12-31T00:00:00Z", - "ShippedDate": "1997-12-08T00:00:00Z", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10763, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10763, - "CustomerID": "FOLIG", - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00Z", - "RequiredDate": "1997-12-31T00:00:00Z", - "ShippedDate": "1997-12-08T00:00:00Z", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10763, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10763, - "CustomerID": "FOLIG", - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00Z", - "RequiredDate": "1997-12-31T00:00:00Z", - "ShippedDate": "1997-12-08T00:00:00Z", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10763, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10789, - "CustomerID": "FOLIG", - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00Z", - "RequiredDate": "1998-01-19T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10789, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10789, - "CustomerID": "FOLIG", - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00Z", - "RequiredDate": "1998-01-19T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10789, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10789, - "CustomerID": "FOLIG", - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00Z", - "RequiredDate": "1998-01-19T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10789, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10789, - "CustomerID": "FOLIG", - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00Z", - "RequiredDate": "1998-01-19T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipRegion": null, - "ShipPostalCode": "59000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10789, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "FOLKO", - "CompanyName": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "Region": null, - "PostalCode": "S-844 67", - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10264, - "CustomerID": "FOLKO", - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00Z", - "RequiredDate": "1996-08-21T00:00:00Z", - "ShippedDate": "1996-08-23T00:00:00Z", - "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10264, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10264, - "CustomerID": "FOLKO", - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00Z", - "RequiredDate": "1996-08-21T00:00:00Z", - "ShippedDate": "1996-08-23T00:00:00Z", - "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10264, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.15, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10327, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00Z", - "RequiredDate": "1996-11-08T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10327, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10327, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00Z", - "RequiredDate": "1996-11-08T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10327, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10327, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00Z", - "RequiredDate": "1996-11-08T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10327, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 35, - "Discount": 0.2, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10327, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00Z", - "RequiredDate": "1996-11-08T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10327, - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10378, - "CustomerID": "FOLKO", - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00Z", - "RequiredDate": "1997-01-07T00:00:00Z", - "ShippedDate": "1996-12-19T00:00:00Z", - "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10378, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10434, - "CustomerID": "FOLKO", - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00Z", - "RequiredDate": "1997-03-03T00:00:00Z", - "ShippedDate": "1997-02-13T00:00:00Z", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10434, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10434, - "CustomerID": "FOLKO", - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00Z", - "RequiredDate": "1997-03-03T00:00:00Z", - "ShippedDate": "1997-02-13T00:00:00Z", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10434, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0.15, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10460, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00Z", - "RequiredDate": "1997-03-28T00:00:00Z", - "ShippedDate": "1997-03-03T00:00:00Z", - "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10460, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10460, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00Z", - "RequiredDate": "1997-03-28T00:00:00Z", - "ShippedDate": "1997-03-03T00:00:00Z", - "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10460, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10533, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00Z", - "RequiredDate": "1997-06-09T00:00:00Z", - "ShippedDate": "1997-05-22T00:00:00Z", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10533, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10533, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00Z", - "RequiredDate": "1997-06-09T00:00:00Z", - "ShippedDate": "1997-05-22T00:00:00Z", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10533, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10533, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00Z", - "RequiredDate": "1997-06-09T00:00:00Z", - "ShippedDate": "1997-05-22T00:00:00Z", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10533, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.05, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10561, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00Z", - "RequiredDate": "1997-07-04T00:00:00Z", - "ShippedDate": "1997-06-09T00:00:00Z", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10561, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10561, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00Z", - "RequiredDate": "1997-07-04T00:00:00Z", - "ShippedDate": "1997-06-09T00:00:00Z", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10561, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10703, - "CustomerID": "FOLKO", - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00Z", - "RequiredDate": "1997-11-11T00:00:00Z", - "ShippedDate": "1997-10-20T00:00:00Z", - "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10703, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10703, - "CustomerID": "FOLKO", - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00Z", - "RequiredDate": "1997-11-11T00:00:00Z", - "ShippedDate": "1997-10-20T00:00:00Z", - "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10703, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10703, - "CustomerID": "FOLKO", - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00Z", - "RequiredDate": "1997-11-11T00:00:00Z", - "ShippedDate": "1997-10-20T00:00:00Z", - "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10703, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10762, - "CustomerID": "FOLKO", - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00Z", - "RequiredDate": "1997-12-30T00:00:00Z", - "ShippedDate": "1997-12-09T00:00:00Z", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10762, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10762, - "CustomerID": "FOLKO", - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00Z", - "RequiredDate": "1997-12-30T00:00:00Z", - "ShippedDate": "1997-12-09T00:00:00Z", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10762, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10762, - "CustomerID": "FOLKO", - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00Z", - "RequiredDate": "1997-12-30T00:00:00Z", - "ShippedDate": "1997-12-09T00:00:00Z", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10762, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10762, - "CustomerID": "FOLKO", - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00Z", - "RequiredDate": "1997-12-30T00:00:00Z", - "ShippedDate": "1997-12-09T00:00:00Z", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10762, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10774, - "CustomerID": "FOLKO", - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-12T00:00:00Z", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10774, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10774, - "CustomerID": "FOLKO", - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-12T00:00:00Z", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10774, - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 66, - "ProductName": "Louisiana Hot Spiced Okra", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "24 - 8 oz jars", - "UnitPrice": 17, - "UnitsInStock": 4, - "UnitsOnOrder": 100, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10824, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10824, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10824, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10824, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10880, - "CustomerID": "FOLKO", - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10880, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10880, - "CustomerID": "FOLKO", - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10880, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10880, - "CustomerID": "FOLKO", - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10880, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10902, - "CustomerID": "FOLKO", - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00Z", - "RequiredDate": "1998-03-23T00:00:00Z", - "ShippedDate": "1998-03-03T00:00:00Z", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10902, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10902, - "CustomerID": "FOLKO", - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00Z", - "RequiredDate": "1998-03-23T00:00:00Z", - "ShippedDate": "1998-03-03T00:00:00Z", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10902, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.15, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10955, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00Z", - "RequiredDate": "1998-04-14T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10955, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10977, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10977, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10977, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10977, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10977, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10977, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10977, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10977, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10980, - "CustomerID": "FOLKO", - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00Z", - "RequiredDate": "1998-05-08T00:00:00Z", - "ShippedDate": "1998-04-17T00:00:00Z", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10980, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10993, - "CustomerID": "FOLKO", - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-04-29T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10993, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10993, - "CustomerID": "FOLKO", - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-04-29T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10993, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11001, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-14T00:00:00Z", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11001, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11001, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-14T00:00:00Z", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11001, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11001, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-14T00:00:00Z", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11001, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11001, - "CustomerID": "FOLKO", - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-14T00:00:00Z", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11001, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11050, - "CustomerID": "FOLKO", - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00Z", - "RequiredDate": "1998-05-25T00:00:00Z", - "ShippedDate": "1998-05-05T00:00:00Z", - "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipRegion": null, - "ShipPostalCode": "S-844 67", - "ShipCountry": "Sweden", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11050, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "FRANK", - "CompanyName": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "Region": null, - "PostalCode": "80805", - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10267, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00Z", - "RequiredDate": "1996-08-26T00:00:00Z", - "ShippedDate": "1996-08-06T00:00:00Z", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10267, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10267, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00Z", - "RequiredDate": "1996-08-26T00:00:00Z", - "ShippedDate": "1996-08-06T00:00:00Z", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10267, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.15, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10267, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00Z", - "RequiredDate": "1996-08-26T00:00:00Z", - "ShippedDate": "1996-08-06T00:00:00Z", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10267, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10337, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00Z", - "RequiredDate": "1996-11-21T00:00:00Z", - "ShippedDate": "1996-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10337, - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10337, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00Z", - "RequiredDate": "1996-11-21T00:00:00Z", - "ShippedDate": "1996-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10337, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10337, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00Z", - "RequiredDate": "1996-11-21T00:00:00Z", - "ShippedDate": "1996-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10337, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10337, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00Z", - "RequiredDate": "1996-11-21T00:00:00Z", - "ShippedDate": "1996-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10337, - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 37, - "ProductName": "Gravad lax", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "12 - 500 g pkgs.", - "UnitPrice": 26, - "UnitsInStock": 11, - "UnitsOnOrder": 50, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10337, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00Z", - "RequiredDate": "1996-11-21T00:00:00Z", - "ShippedDate": "1996-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10337, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10342, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00Z", - "RequiredDate": "1996-11-13T00:00:00Z", - "ShippedDate": "1996-11-04T00:00:00Z", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10342, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10342, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00Z", - "RequiredDate": "1996-11-13T00:00:00Z", - "ShippedDate": "1996-11-04T00:00:00Z", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10342, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10342, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00Z", - "RequiredDate": "1996-11-13T00:00:00Z", - "ShippedDate": "1996-11-04T00:00:00Z", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10342, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10342, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00Z", - "RequiredDate": "1996-11-13T00:00:00Z", - "ShippedDate": "1996-11-04T00:00:00Z", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10342, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10396, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00Z", - "RequiredDate": "1997-01-10T00:00:00Z", - "ShippedDate": "1997-01-06T00:00:00Z", - "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10396, - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10396, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00Z", - "RequiredDate": "1997-01-10T00:00:00Z", - "ShippedDate": "1997-01-06T00:00:00Z", - "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10396, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10396, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00Z", - "RequiredDate": "1997-01-10T00:00:00Z", - "ShippedDate": "1997-01-06T00:00:00Z", - "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10396, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10488, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00Z", - "RequiredDate": "1997-04-24T00:00:00Z", - "ShippedDate": "1997-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10488, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10488, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00Z", - "RequiredDate": "1997-04-24T00:00:00Z", - "ShippedDate": "1997-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10488, - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10560, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00Z", - "RequiredDate": "1997-07-04T00:00:00Z", - "ShippedDate": "1997-06-09T00:00:00Z", - "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10560, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10560, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00Z", - "RequiredDate": "1997-07-04T00:00:00Z", - "ShippedDate": "1997-06-09T00:00:00Z", - "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10560, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10623, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00Z", - "RequiredDate": "1997-09-04T00:00:00Z", - "ShippedDate": "1997-08-12T00:00:00Z", - "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10623, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10623, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00Z", - "RequiredDate": "1997-09-04T00:00:00Z", - "ShippedDate": "1997-08-12T00:00:00Z", - "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10623, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10623, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00Z", - "RequiredDate": "1997-09-04T00:00:00Z", - "ShippedDate": "1997-08-12T00:00:00Z", - "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10623, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10623, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00Z", - "RequiredDate": "1997-09-04T00:00:00Z", - "ShippedDate": "1997-08-12T00:00:00Z", - "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10623, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10623, - "CustomerID": "FRANK", - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00Z", - "RequiredDate": "1997-09-04T00:00:00Z", - "ShippedDate": "1997-08-12T00:00:00Z", - "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10623, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10653, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00Z", - "RequiredDate": "1997-09-30T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10653, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10653, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00Z", - "RequiredDate": "1997-09-30T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10653, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10670, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00Z", - "RequiredDate": "1997-10-14T00:00:00Z", - "ShippedDate": "1997-09-18T00:00:00Z", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10670, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10670, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00Z", - "RequiredDate": "1997-10-14T00:00:00Z", - "ShippedDate": "1997-09-18T00:00:00Z", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10670, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10670, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00Z", - "RequiredDate": "1997-10-14T00:00:00Z", - "ShippedDate": "1997-09-18T00:00:00Z", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10670, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10670, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00Z", - "RequiredDate": "1997-10-14T00:00:00Z", - "ShippedDate": "1997-09-18T00:00:00Z", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10670, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10670, - "CustomerID": "FRANK", - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00Z", - "RequiredDate": "1997-10-14T00:00:00Z", - "ShippedDate": "1997-09-18T00:00:00Z", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10670, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10675, - "CustomerID": "FRANK", - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00Z", - "RequiredDate": "1997-10-17T00:00:00Z", - "ShippedDate": "1997-09-23T00:00:00Z", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10675, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10675, - "CustomerID": "FRANK", - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00Z", - "RequiredDate": "1997-10-17T00:00:00Z", - "ShippedDate": "1997-09-23T00:00:00Z", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10675, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10675, - "CustomerID": "FRANK", - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00Z", - "RequiredDate": "1997-10-17T00:00:00Z", - "ShippedDate": "1997-09-23T00:00:00Z", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10675, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10717, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00Z", - "RequiredDate": "1997-11-21T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10717, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0.05, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10717, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00Z", - "RequiredDate": "1997-11-21T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10717, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10717, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00Z", - "RequiredDate": "1997-11-21T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10717, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.05, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10791, - "CustomerID": "FRANK", - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1998-01-01T00:00:00Z", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10791, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.05, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10791, - "CustomerID": "FRANK", - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1998-01-01T00:00:00Z", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10791, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10859, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00Z", - "RequiredDate": "1998-02-26T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10859, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10859, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00Z", - "RequiredDate": "1998-02-26T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10859, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10859, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00Z", - "RequiredDate": "1998-02-26T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10859, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10929, - "CustomerID": "FRANK", - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-03-12T00:00:00Z", - "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10929, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10929, - "CustomerID": "FRANK", - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-03-12T00:00:00Z", - "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10929, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10929, - "CustomerID": "FRANK", - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-03-12T00:00:00Z", - "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10929, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11012, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-17T00:00:00Z", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11012, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11012, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-17T00:00:00Z", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11012, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.05, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11012, - "CustomerID": "FRANK", - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-17T00:00:00Z", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipRegion": null, - "ShipPostalCode": "80805", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11012, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "FRANR", - "CompanyName": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "Region": null, - "PostalCode": "44000", - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10671, - "CustomerID": "FRANR", - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00Z", - "RequiredDate": "1997-10-15T00:00:00Z", - "ShippedDate": "1997-09-24T00:00:00Z", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10671, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10671, - "CustomerID": "FRANR", - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00Z", - "RequiredDate": "1997-10-15T00:00:00Z", - "ShippedDate": "1997-09-24T00:00:00Z", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10671, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10671, - "CustomerID": "FRANR", - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00Z", - "RequiredDate": "1997-10-15T00:00:00Z", - "ShippedDate": "1997-09-24T00:00:00Z", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10671, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10860, - "CustomerID": "FRANR", - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00Z", - "RequiredDate": "1998-02-26T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10860, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10860, - "CustomerID": "FRANR", - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00Z", - "RequiredDate": "1998-02-26T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10860, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10971, - "CustomerID": "FRANR", - "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00Z", - "RequiredDate": "1998-04-21T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipRegion": null, - "ShipPostalCode": "44000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10971, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "FRANS", - "CompanyName": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "Region": null, - "PostalCode": "10100", - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10422, - "CustomerID": "FRANS", - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00Z", - "RequiredDate": "1997-02-19T00:00:00Z", - "ShippedDate": "1997-01-31T00:00:00Z", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10422, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10710, - "CustomerID": "FRANS", - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00Z", - "RequiredDate": "1997-11-17T00:00:00Z", - "ShippedDate": "1997-10-23T00:00:00Z", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10710, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10710, - "CustomerID": "FRANS", - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00Z", - "RequiredDate": "1997-11-17T00:00:00Z", - "ShippedDate": "1997-10-23T00:00:00Z", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10710, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10753, - "CustomerID": "FRANS", - "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00Z", - "RequiredDate": "1997-12-23T00:00:00Z", - "ShippedDate": "1997-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10753, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10753, - "CustomerID": "FRANS", - "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00Z", - "RequiredDate": "1997-12-23T00:00:00Z", - "ShippedDate": "1997-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10753, - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10807, - "CustomerID": "FRANS", - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00Z", - "RequiredDate": "1998-01-28T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10807, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11026, - "CustomerID": "FRANS", - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-28T00:00:00Z", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11026, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11026, - "CustomerID": "FRANS", - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-28T00:00:00Z", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11026, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11060, - "CustomerID": "FRANS", - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00Z", - "RequiredDate": "1998-05-28T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11060, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11060, - "CustomerID": "FRANS", - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00Z", - "RequiredDate": "1998-05-28T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipRegion": null, - "ShipPostalCode": "10100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11060, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "FURIB", - "CompanyName": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "Region": null, - "PostalCode": "1675", - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10328, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00Z", - "RequiredDate": "1996-11-11T00:00:00Z", - "ShippedDate": "1996-10-17T00:00:00Z", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10328, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10328, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00Z", - "RequiredDate": "1996-11-11T00:00:00Z", - "ShippedDate": "1996-10-17T00:00:00Z", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10328, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10328, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00Z", - "RequiredDate": "1996-11-11T00:00:00Z", - "ShippedDate": "1996-10-17T00:00:00Z", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10328, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10352, - "CustomerID": "FURIB", - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-11-18T00:00:00Z", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10352, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10352, - "CustomerID": "FURIB", - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-11-18T00:00:00Z", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10352, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10464, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00Z", - "RequiredDate": "1997-04-01T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10464, - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10464, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00Z", - "RequiredDate": "1997-04-01T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10464, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10464, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00Z", - "RequiredDate": "1997-04-01T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10464, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10464, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00Z", - "RequiredDate": "1997-04-01T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10464, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10491, - "CustomerID": "FURIB", - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00Z", - "RequiredDate": "1997-04-28T00:00:00Z", - "ShippedDate": "1997-04-08T00:00:00Z", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10491, - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10491, - "CustomerID": "FURIB", - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00Z", - "RequiredDate": "1997-04-28T00:00:00Z", - "ShippedDate": "1997-04-08T00:00:00Z", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10491, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.15, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10551, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00Z", - "RequiredDate": "1997-07-09T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10551, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10551, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00Z", - "RequiredDate": "1997-07-09T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10551, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10551, - "CustomerID": "FURIB", - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00Z", - "RequiredDate": "1997-07-09T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10551, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10604, - "CustomerID": "FURIB", - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00Z", - "RequiredDate": "1997-08-15T00:00:00Z", - "ShippedDate": "1997-07-29T00:00:00Z", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10604, - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1, - "Products": [ - { - "ProductID": 48, - "ProductName": "Chocolade", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 pkgs.", - "UnitPrice": 12.75, - "UnitsInStock": 15, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10604, - "CustomerID": "FURIB", - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00Z", - "RequiredDate": "1997-08-15T00:00:00Z", - "ShippedDate": "1997-07-29T00:00:00Z", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10604, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10664, - "CustomerID": "FURIB", - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00Z", - "RequiredDate": "1997-10-08T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10664, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.15, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10664, - "CustomerID": "FURIB", - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00Z", - "RequiredDate": "1997-10-08T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10664, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.15, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10664, - "CustomerID": "FURIB", - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00Z", - "RequiredDate": "1997-10-08T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10664, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10963, - "CustomerID": "FURIB", - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-03-26T00:00:00Z", - "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1675", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10963, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.15, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "GALED", - "CompanyName": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "Region": null, - "PostalCode": "08022", - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10366, - "CustomerID": "GALED", - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00Z", - "RequiredDate": "1997-01-09T00:00:00Z", - "ShippedDate": "1996-12-30T00:00:00Z", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipRegion": null, - "ShipPostalCode": "8022", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10366, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10366, - "CustomerID": "GALED", - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00Z", - "RequiredDate": "1997-01-09T00:00:00Z", - "ShippedDate": "1996-12-30T00:00:00Z", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipRegion": null, - "ShipPostalCode": "8022", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10366, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10426, - "CustomerID": "GALED", - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00Z", - "RequiredDate": "1997-02-24T00:00:00Z", - "ShippedDate": "1997-02-06T00:00:00Z", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipRegion": null, - "ShipPostalCode": "8022", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10426, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10426, - "CustomerID": "GALED", - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00Z", - "RequiredDate": "1997-02-24T00:00:00Z", - "ShippedDate": "1997-02-06T00:00:00Z", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipRegion": null, - "ShipPostalCode": "8022", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10426, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10568, - "CustomerID": "GALED", - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00Z", - "RequiredDate": "1997-07-11T00:00:00Z", - "ShippedDate": "1997-07-09T00:00:00Z", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipRegion": null, - "ShipPostalCode": "8022", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10568, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10887, - "CustomerID": "GALED", - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00Z", - "RequiredDate": "1998-03-13T00:00:00Z", - "ShippedDate": "1998-02-16T00:00:00Z", - "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipRegion": null, - "ShipPostalCode": "8022", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10887, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10928, - "CustomerID": "GALED", - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipRegion": null, - "ShipPostalCode": "8022", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10928, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10928, - "CustomerID": "GALED", - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipRegion": null, - "ShipPostalCode": "8022", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10928, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "GODOS", - "CompanyName": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "Region": null, - "PostalCode": "41101", - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10303, - "CustomerID": "GODOS", - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00Z", - "RequiredDate": "1996-10-09T00:00:00Z", - "ShippedDate": "1996-09-18T00:00:00Z", - "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10303, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10303, - "CustomerID": "GODOS", - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00Z", - "RequiredDate": "1996-10-09T00:00:00Z", - "ShippedDate": "1996-09-18T00:00:00Z", - "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10303, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10303, - "CustomerID": "GODOS", - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00Z", - "RequiredDate": "1996-10-09T00:00:00Z", - "ShippedDate": "1996-09-18T00:00:00Z", - "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10303, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10550, - "CustomerID": "GODOS", - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00Z", - "RequiredDate": "1997-06-25T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10550, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10550, - "CustomerID": "GODOS", - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00Z", - "RequiredDate": "1997-06-25T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10550, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10550, - "CustomerID": "GODOS", - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00Z", - "RequiredDate": "1997-06-25T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10550, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10550, - "CustomerID": "GODOS", - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00Z", - "RequiredDate": "1997-06-25T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10550, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10629, - "CustomerID": "GODOS", - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00Z", - "RequiredDate": "1997-09-09T00:00:00Z", - "ShippedDate": "1997-08-20T00:00:00Z", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10629, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10629, - "CustomerID": "GODOS", - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00Z", - "RequiredDate": "1997-09-09T00:00:00Z", - "ShippedDate": "1997-08-20T00:00:00Z", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10629, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10872, - "CustomerID": "GODOS", - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10872, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10872, - "CustomerID": "GODOS", - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10872, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10872, - "CustomerID": "GODOS", - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10872, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10872, - "CustomerID": "GODOS", - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10872, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0.05, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10874, - "CustomerID": "GODOS", - "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-02-11T00:00:00Z", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10874, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10888, - "CustomerID": "GODOS", - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00Z", - "RequiredDate": "1998-03-16T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10888, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10888, - "CustomerID": "GODOS", - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00Z", - "RequiredDate": "1998-03-16T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10888, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10911, - "CustomerID": "GODOS", - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-05T00:00:00Z", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10911, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10911, - "CustomerID": "GODOS", - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-05T00:00:00Z", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10911, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10911, - "CustomerID": "GODOS", - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-05T00:00:00Z", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10911, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10948, - "CustomerID": "GODOS", - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00Z", - "RequiredDate": "1998-04-10T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10948, - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10948, - "CustomerID": "GODOS", - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00Z", - "RequiredDate": "1998-04-10T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10948, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10948, - "CustomerID": "GODOS", - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00Z", - "RequiredDate": "1998-04-10T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10948, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11009, - "CustomerID": "GODOS", - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11009, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11009, - "CustomerID": "GODOS", - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11009, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11009, - "CustomerID": "GODOS", - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11009, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11037, - "CustomerID": "GODOS", - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00Z", - "RequiredDate": "1998-05-19T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipRegion": null, - "ShipPostalCode": "41101", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11037, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "GOURL", - "CompanyName": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": "04876-786", - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10423, - "CustomerID": "GOURL", - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00Z", - "RequiredDate": "1997-02-06T00:00:00Z", - "ShippedDate": "1997-02-24T00:00:00Z", - "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10423, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10423, - "CustomerID": "GOURL", - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00Z", - "RequiredDate": "1997-02-06T00:00:00Z", - "ShippedDate": "1997-02-24T00:00:00Z", - "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10423, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10652, - "CustomerID": "GOURL", - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00Z", - "RequiredDate": "1997-09-29T00:00:00Z", - "ShippedDate": "1997-09-08T00:00:00Z", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10652, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 2, - "Discount": 0.25, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10652, - "CustomerID": "GOURL", - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00Z", - "RequiredDate": "1997-09-29T00:00:00Z", - "ShippedDate": "1997-09-08T00:00:00Z", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10652, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10685, - "CustomerID": "GOURL", - "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00Z", - "RequiredDate": "1997-10-13T00:00:00Z", - "ShippedDate": "1997-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10685, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10685, - "CustomerID": "GOURL", - "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00Z", - "RequiredDate": "1997-10-13T00:00:00Z", - "ShippedDate": "1997-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10685, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10685, - "CustomerID": "GOURL", - "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00Z", - "RequiredDate": "1997-10-13T00:00:00Z", - "ShippedDate": "1997-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10685, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10709, - "CustomerID": "GOURL", - "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00Z", - "RequiredDate": "1997-11-14T00:00:00Z", - "ShippedDate": "1997-11-20T00:00:00Z", - "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10709, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10709, - "CustomerID": "GOURL", - "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00Z", - "RequiredDate": "1997-11-14T00:00:00Z", - "ShippedDate": "1997-11-20T00:00:00Z", - "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10709, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10709, - "CustomerID": "GOURL", - "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00Z", - "RequiredDate": "1997-11-14T00:00:00Z", - "ShippedDate": "1997-11-20T00:00:00Z", - "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10709, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10734, - "CustomerID": "GOURL", - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00Z", - "RequiredDate": "1997-12-05T00:00:00Z", - "ShippedDate": "1997-11-12T00:00:00Z", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10734, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10734, - "CustomerID": "GOURL", - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00Z", - "RequiredDate": "1997-12-05T00:00:00Z", - "ShippedDate": "1997-11-12T00:00:00Z", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10734, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10734, - "CustomerID": "GOURL", - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00Z", - "RequiredDate": "1997-12-05T00:00:00Z", - "ShippedDate": "1997-11-12T00:00:00Z", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10734, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10777, - "CustomerID": "GOURL", - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00Z", - "RequiredDate": "1997-12-29T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10777, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10790, - "CustomerID": "GOURL", - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00Z", - "RequiredDate": "1998-01-19T00:00:00Z", - "ShippedDate": "1997-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10790, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.15, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10790, - "CustomerID": "GOURL", - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00Z", - "RequiredDate": "1998-01-19T00:00:00Z", - "ShippedDate": "1997-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10790, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10959, - "CustomerID": "GOURL", - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00Z", - "RequiredDate": "1998-04-29T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10959, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11049, - "CustomerID": "GOURL", - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00Z", - "RequiredDate": "1998-05-22T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11049, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11049, - "CustomerID": "GOURL", - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00Z", - "RequiredDate": "1998-05-22T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": "04876-786", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11049, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "GREAL", - "CompanyName": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": "97403", - "Country": "USA", - "Phone": "(503) 555-7555", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10528, - "CustomerID": "GREAL", - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00Z", - "RequiredDate": "1997-05-20T00:00:00Z", - "ShippedDate": "1997-05-09T00:00:00Z", - "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10528, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10528, - "CustomerID": "GREAL", - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00Z", - "RequiredDate": "1997-05-20T00:00:00Z", - "ShippedDate": "1997-05-09T00:00:00Z", - "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10528, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10528, - "CustomerID": "GREAL", - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00Z", - "RequiredDate": "1997-05-20T00:00:00Z", - "ShippedDate": "1997-05-09T00:00:00Z", - "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10528, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10589, - "CustomerID": "GREAL", - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00Z", - "RequiredDate": "1997-08-01T00:00:00Z", - "ShippedDate": "1997-07-14T00:00:00Z", - "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10589, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10616, - "CustomerID": "GREAL", - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00Z", - "RequiredDate": "1997-08-28T00:00:00Z", - "ShippedDate": "1997-08-05T00:00:00Z", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10616, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10616, - "CustomerID": "GREAL", - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00Z", - "RequiredDate": "1997-08-28T00:00:00Z", - "ShippedDate": "1997-08-05T00:00:00Z", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10616, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10616, - "CustomerID": "GREAL", - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00Z", - "RequiredDate": "1997-08-28T00:00:00Z", - "ShippedDate": "1997-08-05T00:00:00Z", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10616, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10616, - "CustomerID": "GREAL", - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00Z", - "RequiredDate": "1997-08-28T00:00:00Z", - "ShippedDate": "1997-08-05T00:00:00Z", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10616, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10617, - "CustomerID": "GREAL", - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00Z", - "RequiredDate": "1997-08-28T00:00:00Z", - "ShippedDate": "1997-08-04T00:00:00Z", - "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10617, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10656, - "CustomerID": "GREAL", - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-10T00:00:00Z", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10656, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10656, - "CustomerID": "GREAL", - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-10T00:00:00Z", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10656, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, - "Discount": 0.1, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10656, - "CustomerID": "GREAL", - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-10T00:00:00Z", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10656, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10681, - "CustomerID": "GREAL", - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00Z", - "RequiredDate": "1997-10-23T00:00:00Z", - "ShippedDate": "1997-09-30T00:00:00Z", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10681, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10681, - "CustomerID": "GREAL", - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00Z", - "RequiredDate": "1997-10-23T00:00:00Z", - "ShippedDate": "1997-09-30T00:00:00Z", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10681, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10681, - "CustomerID": "GREAL", - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00Z", - "RequiredDate": "1997-10-23T00:00:00Z", - "ShippedDate": "1997-09-30T00:00:00Z", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10681, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10816, - "CustomerID": "GREAL", - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00Z", - "RequiredDate": "1998-02-03T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10816, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10816, - "CustomerID": "GREAL", - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00Z", - "RequiredDate": "1998-02-03T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10816, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10936, - "CustomerID": "GREAL", - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00Z", - "RequiredDate": "1998-04-06T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10936, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11006, - "CustomerID": "GREAL", - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00Z", - "RequiredDate": "1998-05-05T00:00:00Z", - "ShippedDate": "1998-04-15T00:00:00Z", - "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11006, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11006, - "CustomerID": "GREAL", - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00Z", - "RequiredDate": "1998-05-05T00:00:00Z", - "ShippedDate": "1998-04-15T00:00:00Z", - "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11006, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11040, - "CustomerID": "GREAL", - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00Z", - "RequiredDate": "1998-05-20T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 18.84, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11040, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11061, - "CustomerID": "GREAL", - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00Z", - "RequiredDate": "1998-06-11T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": "97403", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11061, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "GROSR", - "CompanyName": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": "1081", - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10268, - "CustomerID": "GROSR", - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00Z", - "RequiredDate": "1996-08-27T00:00:00Z", - "ShippedDate": "1996-08-02T00:00:00Z", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": "1081", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10268, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10268, - "CustomerID": "GROSR", - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00Z", - "RequiredDate": "1996-08-27T00:00:00Z", - "ShippedDate": "1996-08-02T00:00:00Z", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": "1081", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10268, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10785, - "CustomerID": "GROSR", - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00Z", - "RequiredDate": "1998-01-15T00:00:00Z", - "ShippedDate": "1997-12-24T00:00:00Z", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": "1081", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10785, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10785, - "CustomerID": "GROSR", - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00Z", - "RequiredDate": "1998-01-15T00:00:00Z", - "ShippedDate": "1997-12-24T00:00:00Z", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": "1081", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10785, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "HANAR", - "CompanyName": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Rio de Janeiro", - "Region": "RJ", - "PostalCode": "05454-876", - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10250, - "CustomerID": "HANAR", - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00Z", - "RequiredDate": "1996-08-05T00:00:00Z", - "ShippedDate": "1996-07-12T00:00:00Z", - "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10250, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10250, - "CustomerID": "HANAR", - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00Z", - "RequiredDate": "1996-08-05T00:00:00Z", - "ShippedDate": "1996-07-12T00:00:00Z", - "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10250, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.15, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10250, - "CustomerID": "HANAR", - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00Z", - "RequiredDate": "1996-08-05T00:00:00Z", - "ShippedDate": "1996-07-12T00:00:00Z", - "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10250, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10253, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1996-07-10T00:00:00Z", - "RequiredDate": "1996-07-24T00:00:00Z", - "ShippedDate": "1996-07-16T00:00:00Z", - "ShipVia": 2, - "Freight": 58.17, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10253, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10253, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1996-07-10T00:00:00Z", - "RequiredDate": "1996-07-24T00:00:00Z", - "ShippedDate": "1996-07-16T00:00:00Z", - "ShipVia": 2, - "Freight": 58.17, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10253, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 42, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10253, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1996-07-10T00:00:00Z", - "RequiredDate": "1996-07-24T00:00:00Z", - "ShippedDate": "1996-07-16T00:00:00Z", - "ShipVia": 2, - "Freight": 58.17, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10253, - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10541, - "CustomerID": "HANAR", - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00Z", - "RequiredDate": "1997-06-16T00:00:00Z", - "ShippedDate": "1997-05-29T00:00:00Z", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10541, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10541, - "CustomerID": "HANAR", - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00Z", - "RequiredDate": "1997-06-16T00:00:00Z", - "ShippedDate": "1997-05-29T00:00:00Z", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10541, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10541, - "CustomerID": "HANAR", - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00Z", - "RequiredDate": "1997-06-16T00:00:00Z", - "ShippedDate": "1997-05-29T00:00:00Z", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10541, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10541, - "CustomerID": "HANAR", - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00Z", - "RequiredDate": "1997-06-16T00:00:00Z", - "ShippedDate": "1997-05-29T00:00:00Z", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10541, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10645, - "CustomerID": "HANAR", - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00Z", - "RequiredDate": "1997-09-23T00:00:00Z", - "ShippedDate": "1997-09-02T00:00:00Z", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10645, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10645, - "CustomerID": "HANAR", - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00Z", - "RequiredDate": "1997-09-23T00:00:00Z", - "ShippedDate": "1997-09-02T00:00:00Z", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10645, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10690, - "CustomerID": "HANAR", - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00Z", - "RequiredDate": "1997-10-30T00:00:00Z", - "ShippedDate": "1997-10-03T00:00:00Z", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10690, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10690, - "CustomerID": "HANAR", - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00Z", - "RequiredDate": "1997-10-30T00:00:00Z", - "ShippedDate": "1997-10-03T00:00:00Z", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10690, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10770, - "CustomerID": "HANAR", - "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00Z", - "RequiredDate": "1998-01-06T00:00:00Z", - "ShippedDate": "1997-12-17T00:00:00Z", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10770, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10783, - "CustomerID": "HANAR", - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00Z", - "RequiredDate": "1998-01-15T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10783, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10783, - "CustomerID": "HANAR", - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00Z", - "RequiredDate": "1998-01-15T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10783, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10886, - "CustomerID": "HANAR", - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00Z", - "RequiredDate": "1998-03-13T00:00:00Z", - "ShippedDate": "1998-03-02T00:00:00Z", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10886, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10886, - "CustomerID": "HANAR", - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00Z", - "RequiredDate": "1998-03-13T00:00:00Z", - "ShippedDate": "1998-03-02T00:00:00Z", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10886, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10886, - "CustomerID": "HANAR", - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00Z", - "RequiredDate": "1998-03-13T00:00:00Z", - "ShippedDate": "1998-03-02T00:00:00Z", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10886, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10903, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10903, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10903, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10903, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10903, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10903, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10922, - "CustomerID": "HANAR", - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00Z", - "RequiredDate": "1998-03-31T00:00:00Z", - "ShippedDate": "1998-03-05T00:00:00Z", - "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10922, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10922, - "CustomerID": "HANAR", - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00Z", - "RequiredDate": "1998-03-31T00:00:00Z", - "ShippedDate": "1998-03-05T00:00:00Z", - "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10922, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10925, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10925, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0.15, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10925, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00Z", - "RequiredDate": "1998-04-01T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10925, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.15, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10981, - "CustomerID": "HANAR", - "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00Z", - "RequiredDate": "1998-04-24T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10981, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11022, - "CustomerID": "HANAR", - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11022, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11022, - "CustomerID": "HANAR", - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11022, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11052, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00Z", - "RequiredDate": "1998-05-25T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11052, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11052, - "CustomerID": "HANAR", - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00Z", - "RequiredDate": "1998-05-25T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "05454-876", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11052, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "HILAA", - "CompanyName": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": "5022", - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10257, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00Z", - "RequiredDate": "1996-08-13T00:00:00Z", - "ShippedDate": "1996-07-22T00:00:00Z", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10257, - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10257, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00Z", - "RequiredDate": "1996-08-13T00:00:00Z", - "ShippedDate": "1996-07-22T00:00:00Z", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10257, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10257, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00Z", - "RequiredDate": "1996-08-13T00:00:00Z", - "ShippedDate": "1996-07-22T00:00:00Z", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10257, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10395, - "CustomerID": "HILAA", - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00Z", - "RequiredDate": "1997-01-23T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10395, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10395, - "CustomerID": "HILAA", - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00Z", - "RequiredDate": "1997-01-23T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10395, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, - "Discount": 0.1, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10395, - "CustomerID": "HILAA", - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00Z", - "RequiredDate": "1997-01-23T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10395, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10476, - "CustomerID": "HILAA", - "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00Z", - "RequiredDate": "1997-04-14T00:00:00Z", - "ShippedDate": "1997-03-24T00:00:00Z", - "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10476, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.05, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10476, - "CustomerID": "HILAA", - "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00Z", - "RequiredDate": "1997-04-14T00:00:00Z", - "ShippedDate": "1997-03-24T00:00:00Z", - "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10476, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10486, - "CustomerID": "HILAA", - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00Z", - "RequiredDate": "1997-04-23T00:00:00Z", - "ShippedDate": "1997-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10486, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10486, - "CustomerID": "HILAA", - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00Z", - "RequiredDate": "1997-04-23T00:00:00Z", - "ShippedDate": "1997-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10486, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10486, - "CustomerID": "HILAA", - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00Z", - "RequiredDate": "1997-04-23T00:00:00Z", - "ShippedDate": "1997-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10486, - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10490, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00Z", - "RequiredDate": "1997-04-28T00:00:00Z", - "ShippedDate": "1997-04-03T00:00:00Z", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10490, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10490, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00Z", - "RequiredDate": "1997-04-28T00:00:00Z", - "ShippedDate": "1997-04-03T00:00:00Z", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10490, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10490, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00Z", - "RequiredDate": "1997-04-28T00:00:00Z", - "ShippedDate": "1997-04-03T00:00:00Z", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10490, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10498, - "CustomerID": "HILAA", - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00Z", - "RequiredDate": "1997-05-05T00:00:00Z", - "ShippedDate": "1997-04-11T00:00:00Z", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10498, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10498, - "CustomerID": "HILAA", - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00Z", - "RequiredDate": "1997-05-05T00:00:00Z", - "ShippedDate": "1997-04-11T00:00:00Z", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10498, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10498, - "CustomerID": "HILAA", - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00Z", - "RequiredDate": "1997-05-05T00:00:00Z", - "ShippedDate": "1997-04-11T00:00:00Z", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10498, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10552, - "CustomerID": "HILAA", - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00Z", - "RequiredDate": "1997-06-26T00:00:00Z", - "ShippedDate": "1997-06-05T00:00:00Z", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10552, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10552, - "CustomerID": "HILAA", - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00Z", - "RequiredDate": "1997-06-26T00:00:00Z", - "ShippedDate": "1997-06-05T00:00:00Z", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10552, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10601, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00Z", - "RequiredDate": "1997-08-27T00:00:00Z", - "ShippedDate": "1997-07-22T00:00:00Z", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10601, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10601, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00Z", - "RequiredDate": "1997-08-27T00:00:00Z", - "ShippedDate": "1997-07-22T00:00:00Z", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10601, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10613, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00Z", - "RequiredDate": "1997-08-26T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10613, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0.1, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10613, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00Z", - "RequiredDate": "1997-08-26T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10613, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10641, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00Z", - "RequiredDate": "1997-09-19T00:00:00Z", - "ShippedDate": "1997-08-26T00:00:00Z", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10641, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10641, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00Z", - "RequiredDate": "1997-09-19T00:00:00Z", - "ShippedDate": "1997-08-26T00:00:00Z", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10641, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10705, - "CustomerID": "HILAA", - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00Z", - "RequiredDate": "1997-11-12T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10705, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10705, - "CustomerID": "HILAA", - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00Z", - "RequiredDate": "1997-11-12T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10705, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10796, - "CustomerID": "HILAA", - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00Z", - "RequiredDate": "1998-01-22T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10796, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10796, - "CustomerID": "HILAA", - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00Z", - "RequiredDate": "1998-01-22T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10796, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10796, - "CustomerID": "HILAA", - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00Z", - "RequiredDate": "1998-01-22T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10796, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10796, - "CustomerID": "HILAA", - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00Z", - "RequiredDate": "1998-01-22T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10796, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 24, - "Discount": 0.2, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10863, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00Z", - "RequiredDate": "1998-03-02T00:00:00Z", - "ShippedDate": "1998-02-17T00:00:00Z", - "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10863, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10863, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00Z", - "RequiredDate": "1998-03-02T00:00:00Z", - "ShippedDate": "1998-02-17T00:00:00Z", - "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10863, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.15, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10901, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00Z", - "RequiredDate": "1998-03-23T00:00:00Z", - "ShippedDate": "1998-02-26T00:00:00Z", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10901, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10901, - "CustomerID": "HILAA", - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00Z", - "RequiredDate": "1998-03-23T00:00:00Z", - "ShippedDate": "1998-02-26T00:00:00Z", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10901, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10957, - "CustomerID": "HILAA", - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00Z", - "RequiredDate": "1998-04-15T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10957, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10957, - "CustomerID": "HILAA", - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00Z", - "RequiredDate": "1998-04-15T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10957, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10957, - "CustomerID": "HILAA", - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00Z", - "RequiredDate": "1998-04-15T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10957, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10960, - "CustomerID": "HILAA", - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10960, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.25, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10960, - "CustomerID": "HILAA", - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10960, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10976, - "CustomerID": "HILAA", - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-04-03T00:00:00Z", - "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10976, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11055, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-26T00:00:00Z", - "ShippedDate": "1998-05-05T00:00:00Z", - "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11055, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11055, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-26T00:00:00Z", - "ShippedDate": "1998-05-05T00:00:00Z", - "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11055, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11055, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-26T00:00:00Z", - "ShippedDate": "1998-05-05T00:00:00Z", - "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11055, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11055, - "CustomerID": "HILAA", - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00Z", - "RequiredDate": "1998-05-26T00:00:00Z", - "ShippedDate": "1998-05-05T00:00:00Z", - "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": "5022", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11055, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "HUNGC", - "CompanyName": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": "97827", - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10375, - "CustomerID": "HUNGC", - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00Z", - "RequiredDate": "1997-01-03T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10375, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10375, - "CustomerID": "HUNGC", - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00Z", - "RequiredDate": "1997-01-03T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10375, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10394, - "CustomerID": "HUNGC", - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00Z", - "RequiredDate": "1997-01-22T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10394, - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10394, - "CustomerID": "HUNGC", - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00Z", - "RequiredDate": "1997-01-22T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10394, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10415, - "CustomerID": "HUNGC", - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00Z", - "RequiredDate": "1997-02-12T00:00:00Z", - "ShippedDate": "1997-01-24T00:00:00Z", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10415, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10415, - "CustomerID": "HUNGC", - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00Z", - "RequiredDate": "1997-02-12T00:00:00Z", - "ShippedDate": "1997-01-24T00:00:00Z", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10415, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10600, - "CustomerID": "HUNGC", - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00Z", - "RequiredDate": "1997-08-13T00:00:00Z", - "ShippedDate": "1997-07-21T00:00:00Z", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10600, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10600, - "CustomerID": "HUNGC", - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00Z", - "RequiredDate": "1997-08-13T00:00:00Z", - "ShippedDate": "1997-07-21T00:00:00Z", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10600, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10660, - "CustomerID": "HUNGC", - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00Z", - "RequiredDate": "1997-10-06T00:00:00Z", - "ShippedDate": "1997-10-15T00:00:00Z", - "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": "97827", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10660, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "HUNGO", - "CompanyName": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "PostalCode": null, - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10298, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00Z", - "RequiredDate": "1996-10-03T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10298, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10298, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00Z", - "RequiredDate": "1996-10-03T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10298, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10298, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00Z", - "RequiredDate": "1996-10-03T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10298, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10298, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00Z", - "RequiredDate": "1996-10-03T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10298, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10309, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00Z", - "RequiredDate": "1996-10-17T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10309, - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10309, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00Z", - "RequiredDate": "1996-10-17T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10309, - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10309, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00Z", - "RequiredDate": "1996-10-17T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10309, - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10309, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00Z", - "RequiredDate": "1996-10-17T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10309, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10309, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00Z", - "RequiredDate": "1996-10-17T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10309, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10335, - "CustomerID": "HUNGO", - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00Z", - "RequiredDate": "1996-11-19T00:00:00Z", - "ShippedDate": "1996-10-24T00:00:00Z", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10335, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10335, - "CustomerID": "HUNGO", - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00Z", - "RequiredDate": "1996-11-19T00:00:00Z", - "ShippedDate": "1996-10-24T00:00:00Z", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10335, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10335, - "CustomerID": "HUNGO", - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00Z", - "RequiredDate": "1996-11-19T00:00:00Z", - "ShippedDate": "1996-10-24T00:00:00Z", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10335, - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10335, - "CustomerID": "HUNGO", - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00Z", - "RequiredDate": "1996-11-19T00:00:00Z", - "ShippedDate": "1996-10-24T00:00:00Z", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10335, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, - "Discount": 0.2, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10373, - "CustomerID": "HUNGO", - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00Z", - "RequiredDate": "1997-01-02T00:00:00Z", - "ShippedDate": "1996-12-11T00:00:00Z", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10373, - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10373, - "CustomerID": "HUNGO", - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00Z", - "RequiredDate": "1997-01-02T00:00:00Z", - "ShippedDate": "1996-12-11T00:00:00Z", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10373, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10380, - "CustomerID": "HUNGO", - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00Z", - "RequiredDate": "1997-01-09T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10380, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10380, - "CustomerID": "HUNGO", - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00Z", - "RequiredDate": "1997-01-09T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10380, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10380, - "CustomerID": "HUNGO", - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00Z", - "RequiredDate": "1997-01-09T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10380, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, - "Discount": 0.1, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10380, - "CustomerID": "HUNGO", - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00Z", - "RequiredDate": "1997-01-09T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10380, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10429, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00Z", - "RequiredDate": "1997-03-12T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10429, - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10429, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00Z", - "RequiredDate": "1997-03-12T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10429, - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10503, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-04-16T00:00:00Z", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10503, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10503, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-04-16T00:00:00Z", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10503, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10516, - "CustomerID": "HUNGO", - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00Z", - "RequiredDate": "1997-05-22T00:00:00Z", - "ShippedDate": "1997-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10516, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10516, - "CustomerID": "HUNGO", - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00Z", - "RequiredDate": "1997-05-22T00:00:00Z", - "ShippedDate": "1997-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10516, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10516, - "CustomerID": "HUNGO", - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00Z", - "RequiredDate": "1997-05-22T00:00:00Z", - "ShippedDate": "1997-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10516, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10567, - "CustomerID": "HUNGO", - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00Z", - "RequiredDate": "1997-07-10T00:00:00Z", - "ShippedDate": "1997-06-17T00:00:00Z", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10567, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10567, - "CustomerID": "HUNGO", - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00Z", - "RequiredDate": "1997-07-10T00:00:00Z", - "ShippedDate": "1997-06-17T00:00:00Z", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10567, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10567, - "CustomerID": "HUNGO", - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00Z", - "RequiredDate": "1997-07-10T00:00:00Z", - "ShippedDate": "1997-06-17T00:00:00Z", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10567, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10646, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00Z", - "RequiredDate": "1997-10-08T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10646, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10646, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00Z", - "RequiredDate": "1997-10-08T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10646, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10646, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00Z", - "RequiredDate": "1997-10-08T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10646, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10646, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00Z", - "RequiredDate": "1997-10-08T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10646, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10661, - "CustomerID": "HUNGO", - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00Z", - "RequiredDate": "1997-10-07T00:00:00Z", - "ShippedDate": "1997-09-15T00:00:00Z", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10661, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10661, - "CustomerID": "HUNGO", - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00Z", - "RequiredDate": "1997-10-07T00:00:00Z", - "ShippedDate": "1997-09-15T00:00:00Z", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10661, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10687, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00Z", - "RequiredDate": "1997-10-28T00:00:00Z", - "ShippedDate": "1997-10-30T00:00:00Z", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10687, - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25, - "Products": [ - { - "ProductID": 9, - "ProductName": "Mishi Kobe Niku", - "SupplierID": 4, - "CategoryID": 6, - "QuantityPerUnit": "18 - 500 g pkgs.", - "UnitPrice": 97, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10687, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00Z", - "RequiredDate": "1997-10-28T00:00:00Z", - "ShippedDate": "1997-10-30T00:00:00Z", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10687, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10687, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00Z", - "RequiredDate": "1997-10-28T00:00:00Z", - "ShippedDate": "1997-10-30T00:00:00Z", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10687, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10701, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00Z", - "RequiredDate": "1997-10-27T00:00:00Z", - "ShippedDate": "1997-10-15T00:00:00Z", - "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10701, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.15, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10701, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00Z", - "RequiredDate": "1997-10-27T00:00:00Z", - "ShippedDate": "1997-10-15T00:00:00Z", - "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10701, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10701, - "CustomerID": "HUNGO", - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00Z", - "RequiredDate": "1997-10-27T00:00:00Z", - "ShippedDate": "1997-10-15T00:00:00Z", - "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10701, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.15, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10712, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00Z", - "RequiredDate": "1997-11-18T00:00:00Z", - "ShippedDate": "1997-10-31T00:00:00Z", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10712, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.05, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10712, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00Z", - "RequiredDate": "1997-11-18T00:00:00Z", - "ShippedDate": "1997-10-31T00:00:00Z", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10712, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10736, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00Z", - "RequiredDate": "1997-12-09T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10736, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10736, - "CustomerID": "HUNGO", - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00Z", - "RequiredDate": "1997-12-09T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10736, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10897, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00Z", - "RequiredDate": "1998-03-19T00:00:00Z", - "ShippedDate": "1998-02-25T00:00:00Z", - "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10897, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10897, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00Z", - "RequiredDate": "1998-03-19T00:00:00Z", - "ShippedDate": "1998-02-25T00:00:00Z", - "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10897, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10912, - "CustomerID": "HUNGO", - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10912, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10912, - "CustomerID": "HUNGO", - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10912, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10985, - "CustomerID": "HUNGO", - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10985, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, - "Discount": 0.1, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10985, - "CustomerID": "HUNGO", - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10985, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0.1, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10985, - "CustomerID": "HUNGO", - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10985, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, - "Discount": 0.1, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 11063, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00Z", - "RequiredDate": "1998-05-28T00:00:00Z", - "ShippedDate": "1998-05-06T00:00:00Z", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11063, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11063, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00Z", - "RequiredDate": "1998-05-28T00:00:00Z", - "ShippedDate": "1998-05-06T00:00:00Z", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11063, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11063, - "CustomerID": "HUNGO", - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00Z", - "RequiredDate": "1998-05-28T00:00:00Z", - "ShippedDate": "1998-05-06T00:00:00Z", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipPostalCode": null, - "ShipCountry": "Ireland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11063, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "ISLAT", - "CompanyName": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Isle of Wight", - "PostalCode": "PO31 7PJ", - "Country": "UK", - "Phone": "(198) 555-8888", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10315, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00Z", - "RequiredDate": "1996-10-24T00:00:00Z", - "ShippedDate": "1996-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10315, - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10315, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00Z", - "RequiredDate": "1996-10-24T00:00:00Z", - "ShippedDate": "1996-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10315, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10318, - "CustomerID": "ISLAT", - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00Z", - "RequiredDate": "1996-10-29T00:00:00Z", - "ShippedDate": "1996-10-04T00:00:00Z", - "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10318, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10318, - "CustomerID": "ISLAT", - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00Z", - "RequiredDate": "1996-10-29T00:00:00Z", - "ShippedDate": "1996-10-04T00:00:00Z", - "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10318, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10321, - "CustomerID": "ISLAT", - "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00Z", - "RequiredDate": "1996-10-31T00:00:00Z", - "ShippedDate": "1996-10-11T00:00:00Z", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10321, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10473, - "CustomerID": "ISLAT", - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00Z", - "RequiredDate": "1997-03-27T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10473, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10473, - "CustomerID": "ISLAT", - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00Z", - "RequiredDate": "1997-03-27T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10473, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10621, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00Z", - "RequiredDate": "1997-09-02T00:00:00Z", - "ShippedDate": "1997-08-11T00:00:00Z", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10621, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10621, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00Z", - "RequiredDate": "1997-09-02T00:00:00Z", - "ShippedDate": "1997-08-11T00:00:00Z", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10621, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10621, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00Z", - "RequiredDate": "1997-09-02T00:00:00Z", - "ShippedDate": "1997-08-11T00:00:00Z", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10621, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10621, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00Z", - "RequiredDate": "1997-09-02T00:00:00Z", - "ShippedDate": "1997-08-11T00:00:00Z", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10621, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10674, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00Z", - "RequiredDate": "1997-10-16T00:00:00Z", - "ShippedDate": "1997-09-30T00:00:00Z", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10674, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10749, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00Z", - "RequiredDate": "1997-12-18T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10749, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10749, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00Z", - "RequiredDate": "1997-12-18T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10749, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10749, - "CustomerID": "ISLAT", - "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00Z", - "RequiredDate": "1997-12-18T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10749, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10798, - "CustomerID": "ISLAT", - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00Z", - "RequiredDate": "1998-01-23T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10798, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10798, - "CustomerID": "ISLAT", - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00Z", - "RequiredDate": "1998-01-23T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10798, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10829, - "CustomerID": "ISLAT", - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-02-10T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10829, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10829, - "CustomerID": "ISLAT", - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-02-10T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10829, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10829, - "CustomerID": "ISLAT", - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-02-10T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10829, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10829, - "CustomerID": "ISLAT", - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-02-10T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10829, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10933, - "CustomerID": "ISLAT", - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-03T00:00:00Z", - "ShippedDate": "1998-03-16T00:00:00Z", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10933, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10933, - "CustomerID": "ISLAT", - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-03T00:00:00Z", - "ShippedDate": "1998-03-16T00:00:00Z", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": "Isle of Wight", - "ShipPostalCode": "PO31 7PJ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10933, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "KOENE", - "CompanyName": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "Region": null, - "PostalCode": "14776", - "Country": "Germany", - "Phone": "0555-09876", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10323, - "CustomerID": "KOENE", - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00Z", - "RequiredDate": "1996-11-04T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10323, - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 15, - "ProductName": "Genen Shouyu", - "SupplierID": 6, - "CategoryID": 2, - "QuantityPerUnit": "24 - 250 ml bottles", - "UnitPrice": 13, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10323, - "CustomerID": "KOENE", - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00Z", - "RequiredDate": "1996-11-04T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10323, - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10323, - "CustomerID": "KOENE", - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00Z", - "RequiredDate": "1996-11-04T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10323, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10325, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00Z", - "RequiredDate": "1996-10-23T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10325, - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10325, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00Z", - "RequiredDate": "1996-10-23T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10325, - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10325, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00Z", - "RequiredDate": "1996-10-23T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10325, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10325, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00Z", - "RequiredDate": "1996-10-23T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10325, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10325, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00Z", - "RequiredDate": "1996-10-23T00:00:00Z", - "ShippedDate": "1996-10-14T00:00:00Z", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10325, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10456, - "CustomerID": "KOENE", - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10456, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10456, - "CustomerID": "KOENE", - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10456, - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 21, - "Discount": 0.15, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10457, - "CustomerID": "KOENE", - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00Z", - "RequiredDate": "1997-03-25T00:00:00Z", - "ShippedDate": "1997-03-03T00:00:00Z", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10457, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10468, - "CustomerID": "KOENE", - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00Z", - "RequiredDate": "1997-04-04T00:00:00Z", - "ShippedDate": "1997-03-12T00:00:00Z", - "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10468, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10468, - "CustomerID": "KOENE", - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00Z", - "RequiredDate": "1997-04-04T00:00:00Z", - "ShippedDate": "1997-03-12T00:00:00Z", - "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10468, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10506, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00Z", - "RequiredDate": "1997-05-13T00:00:00Z", - "ShippedDate": "1997-05-02T00:00:00Z", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10506, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10506, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00Z", - "RequiredDate": "1997-05-13T00:00:00Z", - "ShippedDate": "1997-05-02T00:00:00Z", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10506, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10542, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00Z", - "RequiredDate": "1997-06-17T00:00:00Z", - "ShippedDate": "1997-05-26T00:00:00Z", - "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10542, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10542, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00Z", - "RequiredDate": "1997-06-17T00:00:00Z", - "ShippedDate": "1997-05-26T00:00:00Z", - "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10542, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.05, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10630, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00Z", - "RequiredDate": "1997-09-10T00:00:00Z", - "ShippedDate": "1997-08-19T00:00:00Z", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10630, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10630, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00Z", - "RequiredDate": "1997-09-10T00:00:00Z", - "ShippedDate": "1997-08-19T00:00:00Z", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10630, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10718, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10718, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10718, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10718, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10718, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10718, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10718, - "CustomerID": "KOENE", - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10718, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10799, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10799, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10799, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10799, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10799, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10799, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10817, - "CustomerID": "KOENE", - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10817, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10817, - "CustomerID": "KOENE", - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10817, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10817, - "CustomerID": "KOENE", - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10817, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.15, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10817, - "CustomerID": "KOENE", - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10817, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 25, - "Discount": 0.15, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10849, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00Z", - "RequiredDate": "1998-02-20T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10849, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10849, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00Z", - "RequiredDate": "1998-02-20T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10849, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.15, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10893, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10893, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10893, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10893, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10893, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10893, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10893, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10893, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10893, - "CustomerID": "KOENE", - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10893, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11028, - "CustomerID": "KOENE", - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00Z", - "RequiredDate": "1998-05-14T00:00:00Z", - "ShippedDate": "1998-04-22T00:00:00Z", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11028, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11028, - "CustomerID": "KOENE", - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00Z", - "RequiredDate": "1998-05-14T00:00:00Z", - "ShippedDate": "1998-04-22T00:00:00Z", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipRegion": null, - "ShipPostalCode": "14776", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11028, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "LACOR", - "CompanyName": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "Region": null, - "PostalCode": "78000", - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10858, - "CustomerID": "LACOR", - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00Z", - "RequiredDate": "1998-02-26T00:00:00Z", - "ShippedDate": "1998-02-03T00:00:00Z", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10858, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10858, - "CustomerID": "LACOR", - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00Z", - "RequiredDate": "1998-02-26T00:00:00Z", - "ShippedDate": "1998-02-03T00:00:00Z", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10858, - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10858, - "CustomerID": "LACOR", - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00Z", - "RequiredDate": "1998-02-26T00:00:00Z", - "ShippedDate": "1998-02-03T00:00:00Z", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10858, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10927, - "CustomerID": "LACOR", - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10927, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10927, - "CustomerID": "LACOR", - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10927, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10927, - "CustomerID": "LACOR", - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00Z", - "RequiredDate": "1998-04-02T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10927, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10972, - "CustomerID": "LACOR", - "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00Z", - "RequiredDate": "1998-04-21T00:00:00Z", - "ShippedDate": "1998-03-26T00:00:00Z", - "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10972, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10972, - "CustomerID": "LACOR", - "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00Z", - "RequiredDate": "1998-04-21T00:00:00Z", - "ShippedDate": "1998-03-26T00:00:00Z", - "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10972, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10973, - "CustomerID": "LACOR", - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00Z", - "RequiredDate": "1998-04-21T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10973, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10973, - "CustomerID": "LACOR", - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00Z", - "RequiredDate": "1998-04-21T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10973, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10973, - "CustomerID": "LACOR", - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00Z", - "RequiredDate": "1998-04-21T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipRegion": null, - "ShipPostalCode": "78000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10973, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "LAMAI", - "CompanyName": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "Region": null, - "PostalCode": "31000", - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10350, - "CustomerID": "LAMAI", - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00Z", - "RequiredDate": "1996-12-09T00:00:00Z", - "ShippedDate": "1996-12-03T00:00:00Z", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10350, - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10350, - "CustomerID": "LAMAI", - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00Z", - "RequiredDate": "1996-12-09T00:00:00Z", - "ShippedDate": "1996-12-03T00:00:00Z", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10350, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10358, - "CustomerID": "LAMAI", - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00Z", - "RequiredDate": "1996-12-18T00:00:00Z", - "ShippedDate": "1996-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10358, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10358, - "CustomerID": "LAMAI", - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00Z", - "RequiredDate": "1996-12-18T00:00:00Z", - "ShippedDate": "1996-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10358, - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10358, - "CustomerID": "LAMAI", - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00Z", - "RequiredDate": "1996-12-18T00:00:00Z", - "ShippedDate": "1996-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10358, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10371, - "CustomerID": "LAMAI", - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00Z", - "RequiredDate": "1996-12-31T00:00:00Z", - "ShippedDate": "1996-12-24T00:00:00Z", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10371, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10413, - "CustomerID": "LAMAI", - "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00Z", - "RequiredDate": "1997-02-11T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10413, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10413, - "CustomerID": "LAMAI", - "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00Z", - "RequiredDate": "1997-02-11T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10413, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10413, - "CustomerID": "LAMAI", - "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00Z", - "RequiredDate": "1997-02-11T00:00:00Z", - "ShippedDate": "1997-01-16T00:00:00Z", - "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10413, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10425, - "CustomerID": "LAMAI", - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00Z", - "RequiredDate": "1997-02-21T00:00:00Z", - "ShippedDate": "1997-02-14T00:00:00Z", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10425, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, - "Discount": 0.25, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10425, - "CustomerID": "LAMAI", - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00Z", - "RequiredDate": "1997-02-21T00:00:00Z", - "ShippedDate": "1997-02-14T00:00:00Z", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10425, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10454, - "CustomerID": "LAMAI", - "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00Z", - "RequiredDate": "1997-03-21T00:00:00Z", - "ShippedDate": "1997-02-25T00:00:00Z", - "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10454, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10454, - "CustomerID": "LAMAI", - "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00Z", - "RequiredDate": "1997-03-21T00:00:00Z", - "ShippedDate": "1997-02-25T00:00:00Z", - "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10454, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10454, - "CustomerID": "LAMAI", - "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00Z", - "RequiredDate": "1997-03-21T00:00:00Z", - "ShippedDate": "1997-02-25T00:00:00Z", - "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10454, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10493, - "CustomerID": "LAMAI", - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00Z", - "RequiredDate": "1997-04-30T00:00:00Z", - "ShippedDate": "1997-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10493, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10493, - "CustomerID": "LAMAI", - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00Z", - "RequiredDate": "1997-04-30T00:00:00Z", - "ShippedDate": "1997-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10493, - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 66, - "ProductName": "Louisiana Hot Spiced Okra", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "24 - 8 oz jars", - "UnitPrice": 17, - "UnitsInStock": 4, - "UnitsOnOrder": 100, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10493, - "CustomerID": "LAMAI", - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00Z", - "RequiredDate": "1997-04-30T00:00:00Z", - "ShippedDate": "1997-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10493, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10500, - "CustomerID": "LAMAI", - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00Z", - "RequiredDate": "1997-05-07T00:00:00Z", - "ShippedDate": "1997-04-17T00:00:00Z", - "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10500, - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 15, - "ProductName": "Genen Shouyu", - "SupplierID": 6, - "CategoryID": 2, - "QuantityPerUnit": "24 - 250 ml bottles", - "UnitPrice": 13, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10500, - "CustomerID": "LAMAI", - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00Z", - "RequiredDate": "1997-05-07T00:00:00Z", - "ShippedDate": "1997-04-17T00:00:00Z", - "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10500, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.05, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10610, - "CustomerID": "LAMAI", - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00Z", - "RequiredDate": "1997-08-22T00:00:00Z", - "ShippedDate": "1997-08-06T00:00:00Z", - "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10610, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10631, - "CustomerID": "LAMAI", - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00Z", - "RequiredDate": "1997-09-11T00:00:00Z", - "ShippedDate": "1997-08-15T00:00:00Z", - "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10631, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10787, - "CustomerID": "LAMAI", - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00Z", - "RequiredDate": "1998-01-02T00:00:00Z", - "ShippedDate": "1997-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10787, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10787, - "CustomerID": "LAMAI", - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00Z", - "RequiredDate": "1998-01-02T00:00:00Z", - "ShippedDate": "1997-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10787, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10832, - "CustomerID": "LAMAI", - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00Z", - "RequiredDate": "1998-02-11T00:00:00Z", - "ShippedDate": "1998-01-19T00:00:00Z", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10832, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10832, - "CustomerID": "LAMAI", - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00Z", - "RequiredDate": "1998-02-11T00:00:00Z", - "ShippedDate": "1998-01-19T00:00:00Z", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10832, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10832, - "CustomerID": "LAMAI", - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00Z", - "RequiredDate": "1998-02-11T00:00:00Z", - "ShippedDate": "1998-01-19T00:00:00Z", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10832, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10832, - "CustomerID": "LAMAI", - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00Z", - "RequiredDate": "1998-02-11T00:00:00Z", - "ShippedDate": "1998-01-19T00:00:00Z", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10832, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10923, - "CustomerID": "LAMAI", - "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00Z", - "RequiredDate": "1998-04-14T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10923, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10923, - "CustomerID": "LAMAI", - "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00Z", - "RequiredDate": "1998-04-14T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10923, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10923, - "CustomerID": "LAMAI", - "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00Z", - "RequiredDate": "1998-04-14T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10923, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.2, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11051, - "CustomerID": "LAMAI", - "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00Z", - "RequiredDate": "1998-05-25T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipRegion": null, - "ShipPostalCode": "31000", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11051, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "LAUGB", - "CompanyName": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": "V3F 2K1", - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10495, - "CustomerID": "LAUGB", - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00Z", - "RequiredDate": "1997-05-01T00:00:00Z", - "ShippedDate": "1997-04-11T00:00:00Z", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": "V3F 2K1", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10495, - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10495, - "CustomerID": "LAUGB", - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00Z", - "RequiredDate": "1997-05-01T00:00:00Z", - "ShippedDate": "1997-04-11T00:00:00Z", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": "V3F 2K1", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10495, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10495, - "CustomerID": "LAUGB", - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00Z", - "RequiredDate": "1997-05-01T00:00:00Z", - "ShippedDate": "1997-04-11T00:00:00Z", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": "V3F 2K1", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10495, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10620, - "CustomerID": "LAUGB", - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00Z", - "RequiredDate": "1997-09-02T00:00:00Z", - "ShippedDate": "1997-08-14T00:00:00Z", - "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": "V3F 2K1", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10620, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10620, - "CustomerID": "LAUGB", - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00Z", - "RequiredDate": "1997-09-02T00:00:00Z", - "ShippedDate": "1997-08-14T00:00:00Z", - "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": "V3F 2K1", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10620, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10810, - "CustomerID": "LAUGB", - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00Z", - "RequiredDate": "1998-01-29T00:00:00Z", - "ShippedDate": "1998-01-07T00:00:00Z", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": "V3F 2K1", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10810, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10810, - "CustomerID": "LAUGB", - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00Z", - "RequiredDate": "1998-01-29T00:00:00Z", - "ShippedDate": "1998-01-07T00:00:00Z", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": "V3F 2K1", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10810, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10810, - "CustomerID": "LAUGB", - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00Z", - "RequiredDate": "1998-01-29T00:00:00Z", - "ShippedDate": "1998-01-07T00:00:00Z", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": "V3F 2K1", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10810, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "LAZYK", - "CompanyName": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": "99362", - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10482, - "CustomerID": "LAZYK", - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00Z", - "RequiredDate": "1997-04-18T00:00:00Z", - "ShippedDate": "1997-04-10T00:00:00Z", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": "99362", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10482, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10545, - "CustomerID": "LAZYK", - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00Z", - "RequiredDate": "1997-06-19T00:00:00Z", - "ShippedDate": "1997-06-26T00:00:00Z", - "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": "99362", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10545, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "LEHMS", - "CompanyName": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "Region": null, - "PostalCode": "60528", - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10279, - "CustomerID": "LEHMS", - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00Z", - "RequiredDate": "1996-09-10T00:00:00Z", - "ShippedDate": "1996-08-16T00:00:00Z", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10279, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10284, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00Z", - "RequiredDate": "1996-09-16T00:00:00Z", - "ShippedDate": "1996-08-27T00:00:00Z", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10284, - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10284, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00Z", - "RequiredDate": "1996-09-16T00:00:00Z", - "ShippedDate": "1996-08-27T00:00:00Z", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10284, - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10284, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00Z", - "RequiredDate": "1996-09-16T00:00:00Z", - "ShippedDate": "1996-08-27T00:00:00Z", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10284, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10284, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00Z", - "RequiredDate": "1996-09-16T00:00:00Z", - "ShippedDate": "1996-08-27T00:00:00Z", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10284, - "ProductID": 67, - "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10343, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00Z", - "RequiredDate": "1996-11-28T00:00:00Z", - "ShippedDate": "1996-11-06T00:00:00Z", - "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10343, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10343, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00Z", - "RequiredDate": "1996-11-28T00:00:00Z", - "ShippedDate": "1996-11-06T00:00:00Z", - "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10343, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.05, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10343, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00Z", - "RequiredDate": "1996-11-28T00:00:00Z", - "ShippedDate": "1996-11-06T00:00:00Z", - "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10343, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10497, - "CustomerID": "LEHMS", - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00Z", - "RequiredDate": "1997-05-02T00:00:00Z", - "ShippedDate": "1997-04-07T00:00:00Z", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10497, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10497, - "CustomerID": "LEHMS", - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00Z", - "RequiredDate": "1997-05-02T00:00:00Z", - "ShippedDate": "1997-04-07T00:00:00Z", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10497, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10497, - "CustomerID": "LEHMS", - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00Z", - "RequiredDate": "1997-05-02T00:00:00Z", - "ShippedDate": "1997-04-07T00:00:00Z", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10497, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10522, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-06T00:00:00Z", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10522, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10522, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-06T00:00:00Z", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10522, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10522, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-06T00:00:00Z", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10522, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10522, - "CustomerID": "LEHMS", - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-06T00:00:00Z", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10522, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10534, - "CustomerID": "LEHMS", - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00Z", - "RequiredDate": "1997-06-09T00:00:00Z", - "ShippedDate": "1997-05-14T00:00:00Z", - "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10534, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10534, - "CustomerID": "LEHMS", - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00Z", - "RequiredDate": "1997-06-09T00:00:00Z", - "ShippedDate": "1997-05-14T00:00:00Z", - "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10534, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10534, - "CustomerID": "LEHMS", - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00Z", - "RequiredDate": "1997-06-09T00:00:00Z", - "ShippedDate": "1997-05-14T00:00:00Z", - "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10534, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10536, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-06-11T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10536, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10536, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-06-11T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10536, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10536, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-06-11T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10536, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10536, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-06-11T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10536, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10557, - "CustomerID": "LEHMS", - "EmployeeID": 9, - "OrderDate": "1997-06-03T00:00:00Z", - "RequiredDate": "1997-06-17T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 2, - "Freight": 96.72, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10557, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10557, - "CustomerID": "LEHMS", - "EmployeeID": 9, - "OrderDate": "1997-06-03T00:00:00Z", - "RequiredDate": "1997-06-17T00:00:00Z", - "ShippedDate": "1997-06-06T00:00:00Z", - "ShipVia": 2, - "Freight": 96.72, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10557, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10592, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00Z", - "RequiredDate": "1997-08-05T00:00:00Z", - "ShippedDate": "1997-07-16T00:00:00Z", - "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10592, - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.05, - "Products": [ - { - "ProductID": 15, - "ProductName": "Genen Shouyu", - "SupplierID": 6, - "CategoryID": 2, - "QuantityPerUnit": "24 - 250 ml bottles", - "UnitPrice": 13, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10592, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00Z", - "RequiredDate": "1997-08-05T00:00:00Z", - "ShippedDate": "1997-07-16T00:00:00Z", - "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10592, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.05, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10593, - "CustomerID": "LEHMS", - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00Z", - "RequiredDate": "1997-08-06T00:00:00Z", - "ShippedDate": "1997-08-13T00:00:00Z", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10593, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10593, - "CustomerID": "LEHMS", - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00Z", - "RequiredDate": "1997-08-06T00:00:00Z", - "ShippedDate": "1997-08-13T00:00:00Z", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10593, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10593, - "CustomerID": "LEHMS", - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00Z", - "RequiredDate": "1997-08-06T00:00:00Z", - "ShippedDate": "1997-08-13T00:00:00Z", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10593, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10772, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00Z", - "RequiredDate": "1998-01-07T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10772, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10772, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00Z", - "RequiredDate": "1998-01-07T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10772, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10862, - "CustomerID": "LEHMS", - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00Z", - "RequiredDate": "1998-03-13T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10862, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10862, - "CustomerID": "LEHMS", - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00Z", - "RequiredDate": "1998-03-13T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10862, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10891, - "CustomerID": "LEHMS", - "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00Z", - "RequiredDate": "1998-03-17T00:00:00Z", - "ShippedDate": "1998-02-19T00:00:00Z", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10891, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10934, - "CustomerID": "LEHMS", - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00Z", - "RequiredDate": "1998-04-06T00:00:00Z", - "ShippedDate": "1998-03-12T00:00:00Z", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10934, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11070, - "CustomerID": "LEHMS", - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11070, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11070, - "CustomerID": "LEHMS", - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11070, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11070, - "CustomerID": "LEHMS", - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11070, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11070, - "CustomerID": "LEHMS", - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipRegion": null, - "ShipPostalCode": "60528", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11070, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "LETSS", - "CompanyName": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": "94117", - "Country": "USA", - "Phone": "(415) 555-5938", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10579, - "CustomerID": "LETSS", - "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00Z", - "RequiredDate": "1997-07-23T00:00:00Z", - "ShippedDate": "1997-07-04T00:00:00Z", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10579, - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 15, - "ProductName": "Genen Shouyu", - "SupplierID": 6, - "CategoryID": 2, - "QuantityPerUnit": "24 - 250 ml bottles", - "UnitPrice": 13, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10579, - "CustomerID": "LETSS", - "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00Z", - "RequiredDate": "1997-07-23T00:00:00Z", - "ShippedDate": "1997-07-04T00:00:00Z", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10579, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10719, - "CustomerID": "LETSS", - "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10719, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10719, - "CustomerID": "LETSS", - "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10719, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10719, - "CustomerID": "LETSS", - "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00Z", - "RequiredDate": "1997-11-24T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10719, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10735, - "CustomerID": "LETSS", - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00Z", - "RequiredDate": "1997-12-08T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10735, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10735, - "CustomerID": "LETSS", - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00Z", - "RequiredDate": "1997-12-08T00:00:00Z", - "ShippedDate": "1997-11-21T00:00:00Z", - "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10735, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.1, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10884, - "CustomerID": "LETSS", - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00Z", - "RequiredDate": "1998-03-12T00:00:00Z", - "ShippedDate": "1998-02-13T00:00:00Z", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10884, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10884, - "CustomerID": "LETSS", - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00Z", - "RequiredDate": "1998-03-12T00:00:00Z", - "ShippedDate": "1998-02-13T00:00:00Z", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10884, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, - "Discount": 0.05, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10884, - "CustomerID": "LETSS", - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00Z", - "RequiredDate": "1998-03-12T00:00:00Z", - "ShippedDate": "1998-02-13T00:00:00Z", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": "94117", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10884, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "LILAS", - "CompanyName": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": "3508", - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10283, - "CustomerID": "LILAS", - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00Z", - "RequiredDate": "1996-09-13T00:00:00Z", - "ShippedDate": "1996-08-23T00:00:00Z", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10283, - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 15, - "ProductName": "Genen Shouyu", - "SupplierID": 6, - "CategoryID": 2, - "QuantityPerUnit": "24 - 250 ml bottles", - "UnitPrice": 13, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10283, - "CustomerID": "LILAS", - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00Z", - "RequiredDate": "1996-09-13T00:00:00Z", - "ShippedDate": "1996-08-23T00:00:00Z", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10283, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10283, - "CustomerID": "LILAS", - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00Z", - "RequiredDate": "1996-09-13T00:00:00Z", - "ShippedDate": "1996-08-23T00:00:00Z", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10283, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10283, - "CustomerID": "LILAS", - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00Z", - "RequiredDate": "1996-09-13T00:00:00Z", - "ShippedDate": "1996-08-23T00:00:00Z", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10283, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10296, - "CustomerID": "LILAS", - "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00Z", - "RequiredDate": "1996-10-01T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10296, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10296, - "CustomerID": "LILAS", - "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00Z", - "RequiredDate": "1996-10-01T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10296, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10296, - "CustomerID": "LILAS", - "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00Z", - "RequiredDate": "1996-10-01T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10296, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10330, - "CustomerID": "LILAS", - "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00Z", - "RequiredDate": "1996-11-13T00:00:00Z", - "ShippedDate": "1996-10-28T00:00:00Z", - "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10330, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.15, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10330, - "CustomerID": "LILAS", - "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00Z", - "RequiredDate": "1996-11-13T00:00:00Z", - "ShippedDate": "1996-10-28T00:00:00Z", - "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10330, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0.15, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10357, - "CustomerID": "LILAS", - "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00Z", - "RequiredDate": "1996-12-17T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10357, - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10357, - "CustomerID": "LILAS", - "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00Z", - "RequiredDate": "1996-12-17T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10357, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10357, - "CustomerID": "LILAS", - "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00Z", - "RequiredDate": "1996-12-17T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10357, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10381, - "CustomerID": "LILAS", - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00Z", - "RequiredDate": "1997-01-09T00:00:00Z", - "ShippedDate": "1996-12-13T00:00:00Z", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10381, - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10461, - "CustomerID": "LILAS", - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00Z", - "RequiredDate": "1997-03-28T00:00:00Z", - "ShippedDate": "1997-03-05T00:00:00Z", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10461, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10461, - "CustomerID": "LILAS", - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00Z", - "RequiredDate": "1997-03-28T00:00:00Z", - "ShippedDate": "1997-03-05T00:00:00Z", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10461, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10461, - "CustomerID": "LILAS", - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00Z", - "RequiredDate": "1997-03-28T00:00:00Z", - "ShippedDate": "1997-03-05T00:00:00Z", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10461, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 60, - "Discount": 0.25, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10499, - "CustomerID": "LILAS", - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00Z", - "RequiredDate": "1997-05-06T00:00:00Z", - "ShippedDate": "1997-04-16T00:00:00Z", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10499, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10499, - "CustomerID": "LILAS", - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00Z", - "RequiredDate": "1997-05-06T00:00:00Z", - "ShippedDate": "1997-04-16T00:00:00Z", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10499, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10543, - "CustomerID": "LILAS", - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00Z", - "RequiredDate": "1997-06-18T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10543, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10543, - "CustomerID": "LILAS", - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00Z", - "RequiredDate": "1997-06-18T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10543, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.15, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10780, - "CustomerID": "LILAS", - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00Z", - "RequiredDate": "1997-12-30T00:00:00Z", - "ShippedDate": "1997-12-25T00:00:00Z", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10780, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10780, - "CustomerID": "LILAS", - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00Z", - "RequiredDate": "1997-12-30T00:00:00Z", - "ShippedDate": "1997-12-25T00:00:00Z", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10780, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10823, - "CustomerID": "LILAS", - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10823, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10823, - "CustomerID": "LILAS", - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10823, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10823, - "CustomerID": "LILAS", - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10823, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10823, - "CustomerID": "LILAS", - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00Z", - "RequiredDate": "1998-02-06T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10823, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10899, - "CustomerID": "LILAS", - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00Z", - "RequiredDate": "1998-03-20T00:00:00Z", - "ShippedDate": "1998-02-26T00:00:00Z", - "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10899, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.15, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10997, - "CustomerID": "LILAS", - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10997, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10997, - "CustomerID": "LILAS", - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10997, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10997, - "CustomerID": "LILAS", - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10997, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11065, - "CustomerID": "LILAS", - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11065, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11065, - "CustomerID": "LILAS", - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11065, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11071, - "CustomerID": "LILAS", - "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11071, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11071, - "CustomerID": "LILAS", - "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": "3508", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11071, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "LINOD", - "CompanyName": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "I. de Margarita", - "Region": "Nueva Esparta", - "PostalCode": "4980", - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10405, - "CustomerID": "LINOD", - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00Z", - "RequiredDate": "1997-02-03T00:00:00Z", - "ShippedDate": "1997-01-22T00:00:00Z", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10405, - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10485, - "CustomerID": "LINOD", - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10485, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10485, - "CustomerID": "LINOD", - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10485, - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10485, - "CustomerID": "LINOD", - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10485, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10485, - "CustomerID": "LINOD", - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00Z", - "RequiredDate": "1997-04-08T00:00:00Z", - "ShippedDate": "1997-03-31T00:00:00Z", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10485, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10638, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00Z", - "RequiredDate": "1997-09-17T00:00:00Z", - "ShippedDate": "1997-09-01T00:00:00Z", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10638, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10638, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00Z", - "RequiredDate": "1997-09-17T00:00:00Z", - "ShippedDate": "1997-09-01T00:00:00Z", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10638, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10638, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00Z", - "RequiredDate": "1997-09-17T00:00:00Z", - "ShippedDate": "1997-09-01T00:00:00Z", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10638, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10697, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00Z", - "RequiredDate": "1997-11-05T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10697, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10697, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00Z", - "RequiredDate": "1997-11-05T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10697, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10697, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00Z", - "RequiredDate": "1997-11-05T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10697, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10697, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00Z", - "RequiredDate": "1997-11-05T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10697, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10729, - "CustomerID": "LINOD", - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00Z", - "RequiredDate": "1997-12-16T00:00:00Z", - "ShippedDate": "1997-11-14T00:00:00Z", - "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10729, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10729, - "CustomerID": "LINOD", - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00Z", - "RequiredDate": "1997-12-16T00:00:00Z", - "ShippedDate": "1997-11-14T00:00:00Z", - "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10729, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10729, - "CustomerID": "LINOD", - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00Z", - "RequiredDate": "1997-12-16T00:00:00Z", - "ShippedDate": "1997-11-14T00:00:00Z", - "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10729, - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10811, - "CustomerID": "LINOD", - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00Z", - "RequiredDate": "1998-01-30T00:00:00Z", - "ShippedDate": "1998-01-08T00:00:00Z", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10811, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10811, - "CustomerID": "LINOD", - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00Z", - "RequiredDate": "1998-01-30T00:00:00Z", - "ShippedDate": "1998-01-08T00:00:00Z", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10811, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10811, - "CustomerID": "LINOD", - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00Z", - "RequiredDate": "1998-01-30T00:00:00Z", - "ShippedDate": "1998-01-08T00:00:00Z", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10811, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10838, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00Z", - "RequiredDate": "1998-02-16T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10838, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10838, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00Z", - "RequiredDate": "1998-02-16T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10838, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10838, - "CustomerID": "LINOD", - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00Z", - "RequiredDate": "1998-02-16T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10838, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10840, - "CustomerID": "LINOD", - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00Z", - "RequiredDate": "1998-03-02T00:00:00Z", - "ShippedDate": "1998-02-16T00:00:00Z", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10840, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10840, - "CustomerID": "LINOD", - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00Z", - "RequiredDate": "1998-03-02T00:00:00Z", - "ShippedDate": "1998-02-16T00:00:00Z", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10840, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10919, - "CustomerID": "LINOD", - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10919, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10919, - "CustomerID": "LINOD", - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10919, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10919, - "CustomerID": "LINOD", - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10919, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10954, - "CustomerID": "LINOD", - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10954, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.15, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10954, - "CustomerID": "LINOD", - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10954, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.15, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10954, - "CustomerID": "LINOD", - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10954, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10954, - "CustomerID": "LINOD", - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10954, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.15, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11014, - "CustomerID": "LINOD", - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00Z", - "RequiredDate": "1998-05-08T00:00:00Z", - "ShippedDate": "1998-04-15T00:00:00Z", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11014, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11039, - "CustomerID": "LINOD", - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00Z", - "RequiredDate": "1998-05-19T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11039, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11039, - "CustomerID": "LINOD", - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00Z", - "RequiredDate": "1998-05-19T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11039, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11039, - "CustomerID": "LINOD", - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00Z", - "RequiredDate": "1998-05-19T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11039, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11039, - "CustomerID": "LINOD", - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00Z", - "RequiredDate": "1998-05-19T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "I. de Margarita", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": "4980", - "ShipCountry": "Venezuela", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11039, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "LONEP", - "CompanyName": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": "97219", - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10307, - "CustomerID": "LONEP", - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00Z", - "RequiredDate": "1996-10-15T00:00:00Z", - "ShippedDate": "1996-09-25T00:00:00Z", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10307, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10307, - "CustomerID": "LONEP", - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00Z", - "RequiredDate": "1996-10-15T00:00:00Z", - "ShippedDate": "1996-09-25T00:00:00Z", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10307, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10317, - "CustomerID": "LONEP", - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00Z", - "RequiredDate": "1996-10-28T00:00:00Z", - "ShippedDate": "1996-10-10T00:00:00Z", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10317, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10544, - "CustomerID": "LONEP", - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00Z", - "RequiredDate": "1997-06-18T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10544, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10544, - "CustomerID": "LONEP", - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00Z", - "RequiredDate": "1997-06-18T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10544, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10662, - "CustomerID": "LONEP", - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00Z", - "RequiredDate": "1997-10-07T00:00:00Z", - "ShippedDate": "1997-09-18T00:00:00Z", - "ShipVia": 2, - "Freight": 1.28, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10662, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10665, - "CustomerID": "LONEP", - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00Z", - "RequiredDate": "1997-10-09T00:00:00Z", - "ShippedDate": "1997-09-17T00:00:00Z", - "ShipVia": 2, - "Freight": 26.31, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10665, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10665, - "CustomerID": "LONEP", - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00Z", - "RequiredDate": "1997-10-09T00:00:00Z", - "ShippedDate": "1997-09-17T00:00:00Z", - "ShipVia": 2, - "Freight": 26.31, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10665, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10665, - "CustomerID": "LONEP", - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00Z", - "RequiredDate": "1997-10-09T00:00:00Z", - "ShippedDate": "1997-09-17T00:00:00Z", - "ShipVia": 2, - "Freight": 26.31, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10665, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10867, - "CustomerID": "LONEP", - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00Z", - "RequiredDate": "1998-03-17T00:00:00Z", - "ShippedDate": "1998-02-11T00:00:00Z", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10867, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10883, - "CustomerID": "LONEP", - "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00Z", - "RequiredDate": "1998-03-12T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10883, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11018, - "CustomerID": "LONEP", - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00Z", - "RequiredDate": "1998-05-11T00:00:00Z", - "ShippedDate": "1998-04-16T00:00:00Z", - "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11018, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11018, - "CustomerID": "LONEP", - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00Z", - "RequiredDate": "1998-05-11T00:00:00Z", - "ShippedDate": "1998-04-16T00:00:00Z", - "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11018, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11018, - "CustomerID": "LONEP", - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00Z", - "RequiredDate": "1998-05-11T00:00:00Z", - "ShippedDate": "1998-04-16T00:00:00Z", - "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97219", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11018, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "MAGAA", - "CompanyName": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "Region": null, - "PostalCode": "24100", - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10275, - "CustomerID": "MAGAA", - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00Z", - "RequiredDate": "1996-09-04T00:00:00Z", - "ShippedDate": "1996-08-09T00:00:00Z", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10275, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10275, - "CustomerID": "MAGAA", - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00Z", - "RequiredDate": "1996-09-04T00:00:00Z", - "ShippedDate": "1996-08-09T00:00:00Z", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10275, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, - "Discount": 0.05, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10300, - "CustomerID": "MAGAA", - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00Z", - "RequiredDate": "1996-10-07T00:00:00Z", - "ShippedDate": "1996-09-18T00:00:00Z", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10300, - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 66, - "ProductName": "Louisiana Hot Spiced Okra", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "24 - 8 oz jars", - "UnitPrice": 17, - "UnitsInStock": 4, - "UnitsOnOrder": 100, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10300, - "CustomerID": "MAGAA", - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00Z", - "RequiredDate": "1996-10-07T00:00:00Z", - "ShippedDate": "1996-09-18T00:00:00Z", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10300, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10404, - "CustomerID": "MAGAA", - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00Z", - "RequiredDate": "1997-01-31T00:00:00Z", - "ShippedDate": "1997-01-08T00:00:00Z", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10404, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10404, - "CustomerID": "MAGAA", - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00Z", - "RequiredDate": "1997-01-31T00:00:00Z", - "ShippedDate": "1997-01-08T00:00:00Z", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10404, - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10404, - "CustomerID": "MAGAA", - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00Z", - "RequiredDate": "1997-01-31T00:00:00Z", - "ShippedDate": "1997-01-08T00:00:00Z", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10404, - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10467, - "CustomerID": "MAGAA", - "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00Z", - "RequiredDate": "1997-04-03T00:00:00Z", - "ShippedDate": "1997-03-11T00:00:00Z", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10467, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10467, - "CustomerID": "MAGAA", - "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00Z", - "RequiredDate": "1997-04-03T00:00:00Z", - "ShippedDate": "1997-03-11T00:00:00Z", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10467, - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10635, - "CustomerID": "MAGAA", - "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00Z", - "RequiredDate": "1997-09-15T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10635, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10635, - "CustomerID": "MAGAA", - "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00Z", - "RequiredDate": "1997-09-15T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10635, - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10635, - "CustomerID": "MAGAA", - "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00Z", - "RequiredDate": "1997-09-15T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10635, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10754, - "CustomerID": "MAGAA", - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00Z", - "RequiredDate": "1997-12-23T00:00:00Z", - "ShippedDate": "1997-11-27T00:00:00Z", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10754, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10784, - "CustomerID": "MAGAA", - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00Z", - "RequiredDate": "1998-01-15T00:00:00Z", - "ShippedDate": "1997-12-22T00:00:00Z", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10784, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10784, - "CustomerID": "MAGAA", - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00Z", - "RequiredDate": "1998-01-15T00:00:00Z", - "ShippedDate": "1997-12-22T00:00:00Z", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10784, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.15, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10784, - "CustomerID": "MAGAA", - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00Z", - "RequiredDate": "1998-01-15T00:00:00Z", - "ShippedDate": "1997-12-22T00:00:00Z", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10784, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10818, - "CustomerID": "MAGAA", - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-12T00:00:00Z", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10818, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10818, - "CustomerID": "MAGAA", - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-12T00:00:00Z", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10818, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10939, - "CustomerID": "MAGAA", - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00Z", - "RequiredDate": "1998-04-07T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10939, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.15, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10939, - "CustomerID": "MAGAA", - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00Z", - "RequiredDate": "1998-04-07T00:00:00Z", - "ShippedDate": "1998-03-13T00:00:00Z", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10939, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10950, - "CustomerID": "MAGAA", - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00Z", - "RequiredDate": "1998-04-13T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipRegion": null, - "ShipPostalCode": "24100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10950, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "MAISD", - "CompanyName": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "Region": null, - "PostalCode": "B-1180", - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10529, - "CustomerID": "MAISD", - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00Z", - "RequiredDate": "1997-06-04T00:00:00Z", - "ShippedDate": "1997-05-09T00:00:00Z", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10529, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10529, - "CustomerID": "MAISD", - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00Z", - "RequiredDate": "1997-06-04T00:00:00Z", - "ShippedDate": "1997-05-09T00:00:00Z", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10529, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10529, - "CustomerID": "MAISD", - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00Z", - "RequiredDate": "1997-06-04T00:00:00Z", - "ShippedDate": "1997-05-09T00:00:00Z", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10529, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10649, - "CustomerID": "MAISD", - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00Z", - "RequiredDate": "1997-09-25T00:00:00Z", - "ShippedDate": "1997-08-29T00:00:00Z", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10649, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10649, - "CustomerID": "MAISD", - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00Z", - "RequiredDate": "1997-09-25T00:00:00Z", - "ShippedDate": "1997-08-29T00:00:00Z", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10649, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10760, - "CustomerID": "MAISD", - "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00Z", - "RequiredDate": "1997-12-29T00:00:00Z", - "ShippedDate": "1997-12-10T00:00:00Z", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10760, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.25, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10760, - "CustomerID": "MAISD", - "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00Z", - "RequiredDate": "1997-12-29T00:00:00Z", - "ShippedDate": "1997-12-10T00:00:00Z", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10760, - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10760, - "CustomerID": "MAISD", - "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00Z", - "RequiredDate": "1997-12-29T00:00:00Z", - "ShippedDate": "1997-12-10T00:00:00Z", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10760, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10892, - "CustomerID": "MAISD", - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00Z", - "RequiredDate": "1998-03-17T00:00:00Z", - "ShippedDate": "1998-02-19T00:00:00Z", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10892, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10896, - "CustomerID": "MAISD", - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00Z", - "RequiredDate": "1998-03-19T00:00:00Z", - "ShippedDate": "1998-02-27T00:00:00Z", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10896, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10896, - "CustomerID": "MAISD", - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00Z", - "RequiredDate": "1998-03-19T00:00:00Z", - "ShippedDate": "1998-02-27T00:00:00Z", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10896, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10978, - "CustomerID": "MAISD", - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10978, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10978, - "CustomerID": "MAISD", - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10978, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10978, - "CustomerID": "MAISD", - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10978, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10978, - "CustomerID": "MAISD", - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00Z", - "RequiredDate": "1998-04-23T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10978, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.15, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11004, - "CustomerID": "MAISD", - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00Z", - "RequiredDate": "1998-05-05T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11004, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11004, - "CustomerID": "MAISD", - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00Z", - "RequiredDate": "1998-05-05T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipRegion": null, - "ShipPostalCode": "B-1180", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11004, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "MEREP", - "CompanyName": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10332, - "CustomerID": "MEREP", - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00Z", - "RequiredDate": "1996-11-28T00:00:00Z", - "ShippedDate": "1996-10-21T00:00:00Z", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10332, - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10332, - "CustomerID": "MEREP", - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00Z", - "RequiredDate": "1996-11-28T00:00:00Z", - "ShippedDate": "1996-10-21T00:00:00Z", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10332, - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10332, - "CustomerID": "MEREP", - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00Z", - "RequiredDate": "1996-11-28T00:00:00Z", - "ShippedDate": "1996-10-21T00:00:00Z", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10332, - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, - "Discount": 0.2, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10339, - "CustomerID": "MEREP", - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00Z", - "RequiredDate": "1996-11-25T00:00:00Z", - "ShippedDate": "1996-11-04T00:00:00Z", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10339, - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10339, - "CustomerID": "MEREP", - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00Z", - "RequiredDate": "1996-11-25T00:00:00Z", - "ShippedDate": "1996-11-04T00:00:00Z", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10339, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.05, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10339, - "CustomerID": "MEREP", - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00Z", - "RequiredDate": "1996-11-25T00:00:00Z", - "ShippedDate": "1996-11-04T00:00:00Z", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10339, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10376, - "CustomerID": "MEREP", - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00Z", - "RequiredDate": "1997-01-06T00:00:00Z", - "ShippedDate": "1996-12-13T00:00:00Z", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10376, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10424, - "CustomerID": "MEREP", - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00Z", - "RequiredDate": "1997-02-20T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10424, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10424, - "CustomerID": "MEREP", - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00Z", - "RequiredDate": "1997-02-20T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10424, - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10424, - "CustomerID": "MEREP", - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00Z", - "RequiredDate": "1997-02-20T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10424, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10439, - "CustomerID": "MEREP", - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00Z", - "RequiredDate": "1997-03-07T00:00:00Z", - "ShippedDate": "1997-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10439, - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10439, - "CustomerID": "MEREP", - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00Z", - "RequiredDate": "1997-03-07T00:00:00Z", - "ShippedDate": "1997-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10439, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10439, - "CustomerID": "MEREP", - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00Z", - "RequiredDate": "1997-03-07T00:00:00Z", - "ShippedDate": "1997-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10439, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10439, - "CustomerID": "MEREP", - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00Z", - "RequiredDate": "1997-03-07T00:00:00Z", - "ShippedDate": "1997-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10439, - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10505, - "CustomerID": "MEREP", - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00Z", - "RequiredDate": "1997-05-12T00:00:00Z", - "ShippedDate": "1997-04-21T00:00:00Z", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10505, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10565, - "CustomerID": "MEREP", - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00Z", - "RequiredDate": "1997-07-09T00:00:00Z", - "ShippedDate": "1997-06-18T00:00:00Z", - "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10565, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10565, - "CustomerID": "MEREP", - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00Z", - "RequiredDate": "1997-07-09T00:00:00Z", - "ShippedDate": "1997-06-18T00:00:00Z", - "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10565, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10570, - "CustomerID": "MEREP", - "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00Z", - "RequiredDate": "1997-07-15T00:00:00Z", - "ShippedDate": "1997-06-19T00:00:00Z", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10570, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10570, - "CustomerID": "MEREP", - "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00Z", - "RequiredDate": "1997-07-15T00:00:00Z", - "ShippedDate": "1997-06-19T00:00:00Z", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10570, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10590, - "CustomerID": "MEREP", - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00Z", - "RequiredDate": "1997-08-04T00:00:00Z", - "ShippedDate": "1997-07-14T00:00:00Z", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10590, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10590, - "CustomerID": "MEREP", - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00Z", - "RequiredDate": "1997-08-04T00:00:00Z", - "ShippedDate": "1997-07-14T00:00:00Z", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10590, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10605, - "CustomerID": "MEREP", - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00Z", - "RequiredDate": "1997-08-18T00:00:00Z", - "ShippedDate": "1997-07-29T00:00:00Z", - "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10605, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10605, - "CustomerID": "MEREP", - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00Z", - "RequiredDate": "1997-08-18T00:00:00Z", - "ShippedDate": "1997-07-29T00:00:00Z", - "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10605, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10605, - "CustomerID": "MEREP", - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00Z", - "RequiredDate": "1997-08-18T00:00:00Z", - "ShippedDate": "1997-07-29T00:00:00Z", - "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10605, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.05, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10605, - "CustomerID": "MEREP", - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00Z", - "RequiredDate": "1997-08-18T00:00:00Z", - "ShippedDate": "1997-07-29T00:00:00Z", - "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10605, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10618, - "CustomerID": "MEREP", - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-08T00:00:00Z", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10618, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10618, - "CustomerID": "MEREP", - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-08T00:00:00Z", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10618, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10618, - "CustomerID": "MEREP", - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00Z", - "RequiredDate": "1997-09-12T00:00:00Z", - "ShippedDate": "1997-08-08T00:00:00Z", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10618, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10619, - "CustomerID": "MEREP", - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00Z", - "RequiredDate": "1997-09-01T00:00:00Z", - "ShippedDate": "1997-08-07T00:00:00Z", - "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10619, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10619, - "CustomerID": "MEREP", - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00Z", - "RequiredDate": "1997-09-01T00:00:00Z", - "ShippedDate": "1997-08-07T00:00:00Z", - "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10619, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10724, - "CustomerID": "MEREP", - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00Z", - "RequiredDate": "1997-12-11T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10724, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10724, - "CustomerID": "MEREP", - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00Z", - "RequiredDate": "1997-12-11T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": "H1J 1C3", - "ShipCountry": "Canada", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10724, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "MORGK", - "CompanyName": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "Region": null, - "PostalCode": "04179", - "Country": "Germany", - "Phone": "0342-023176", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10277, - "CustomerID": "MORGK", - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00Z", - "RequiredDate": "1996-09-06T00:00:00Z", - "ShippedDate": "1996-08-13T00:00:00Z", - "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10277, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10277, - "CustomerID": "MORGK", - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00Z", - "RequiredDate": "1996-09-06T00:00:00Z", - "ShippedDate": "1996-08-13T00:00:00Z", - "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10277, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10575, - "CustomerID": "MORGK", - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00Z", - "RequiredDate": "1997-07-04T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10575, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10575, - "CustomerID": "MORGK", - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00Z", - "RequiredDate": "1997-07-04T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10575, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10575, - "CustomerID": "MORGK", - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00Z", - "RequiredDate": "1997-07-04T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10575, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10575, - "CustomerID": "MORGK", - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00Z", - "RequiredDate": "1997-07-04T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10575, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10699, - "CustomerID": "MORGK", - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00Z", - "RequiredDate": "1997-11-06T00:00:00Z", - "ShippedDate": "1997-10-13T00:00:00Z", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10699, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10779, - "CustomerID": "MORGK", - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00Z", - "RequiredDate": "1998-01-13T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10779, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10779, - "CustomerID": "MORGK", - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00Z", - "RequiredDate": "1998-01-13T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10779, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10945, - "CustomerID": "MORGK", - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00Z", - "RequiredDate": "1998-04-09T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10945, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10945, - "CustomerID": "MORGK", - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00Z", - "RequiredDate": "1998-04-09T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipRegion": null, - "ShipPostalCode": "04179", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10945, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "NORTS", - "CompanyName": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "Region": null, - "PostalCode": "SW7 1RZ", - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10517, - "CustomerID": "NORTS", - "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00Z", - "RequiredDate": "1997-05-22T00:00:00Z", - "ShippedDate": "1997-04-29T00:00:00Z", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "SW7 1RZ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10517, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10517, - "CustomerID": "NORTS", - "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00Z", - "RequiredDate": "1997-05-22T00:00:00Z", - "ShippedDate": "1997-04-29T00:00:00Z", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "SW7 1RZ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10517, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10517, - "CustomerID": "NORTS", - "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00Z", - "RequiredDate": "1997-05-22T00:00:00Z", - "ShippedDate": "1997-04-29T00:00:00Z", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "SW7 1RZ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10517, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10752, - "CustomerID": "NORTS", - "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00Z", - "RequiredDate": "1997-12-22T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "SW7 1RZ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10752, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10752, - "CustomerID": "NORTS", - "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00Z", - "RequiredDate": "1997-12-22T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "SW7 1RZ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10752, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11057, - "CustomerID": "NORTS", - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00Z", - "RequiredDate": "1998-05-27T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "SW7 1RZ", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11057, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "OCEAN", - "CompanyName": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "Region": null, - "PostalCode": "1010", - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10409, - "CustomerID": "OCEAN", - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00Z", - "RequiredDate": "1997-02-06T00:00:00Z", - "ShippedDate": "1997-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10409, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10409, - "CustomerID": "OCEAN", - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00Z", - "RequiredDate": "1997-02-06T00:00:00Z", - "ShippedDate": "1997-01-14T00:00:00Z", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10409, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10531, - "CustomerID": "OCEAN", - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00Z", - "RequiredDate": "1997-06-05T00:00:00Z", - "ShippedDate": "1997-05-19T00:00:00Z", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10531, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10898, - "CustomerID": "OCEAN", - "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00Z", - "RequiredDate": "1998-03-20T00:00:00Z", - "ShippedDate": "1998-03-06T00:00:00Z", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10898, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10958, - "CustomerID": "OCEAN", - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00Z", - "RequiredDate": "1998-04-15T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10958, - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10958, - "CustomerID": "OCEAN", - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00Z", - "RequiredDate": "1998-04-15T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10958, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10958, - "CustomerID": "OCEAN", - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00Z", - "RequiredDate": "1998-04-15T00:00:00Z", - "ShippedDate": "1998-03-27T00:00:00Z", - "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10958, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10986, - "CustomerID": "OCEAN", - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10986, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10986, - "CustomerID": "OCEAN", - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10986, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10986, - "CustomerID": "OCEAN", - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10986, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10986, - "CustomerID": "OCEAN", - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10986, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "OLDWO", - "CompanyName": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": "99508", - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10305, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00Z", - "RequiredDate": "1996-10-11T00:00:00Z", - "ShippedDate": "1996-10-09T00:00:00Z", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10305, - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10305, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00Z", - "RequiredDate": "1996-10-11T00:00:00Z", - "ShippedDate": "1996-10-09T00:00:00Z", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10305, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10305, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00Z", - "RequiredDate": "1996-10-11T00:00:00Z", - "ShippedDate": "1996-10-09T00:00:00Z", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10305, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10338, - "CustomerID": "OLDWO", - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00Z", - "RequiredDate": "1996-11-22T00:00:00Z", - "ShippedDate": "1996-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10338, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10338, - "CustomerID": "OLDWO", - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00Z", - "RequiredDate": "1996-11-22T00:00:00Z", - "ShippedDate": "1996-10-29T00:00:00Z", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10338, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10441, - "CustomerID": "OLDWO", - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00Z", - "RequiredDate": "1997-03-24T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10441, - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10594, - "CustomerID": "OLDWO", - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00Z", - "RequiredDate": "1997-08-06T00:00:00Z", - "ShippedDate": "1997-07-16T00:00:00Z", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10594, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10594, - "CustomerID": "OLDWO", - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00Z", - "RequiredDate": "1997-08-06T00:00:00Z", - "ShippedDate": "1997-07-16T00:00:00Z", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10594, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10680, - "CustomerID": "OLDWO", - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00Z", - "RequiredDate": "1997-10-22T00:00:00Z", - "ShippedDate": "1997-09-26T00:00:00Z", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10680, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10680, - "CustomerID": "OLDWO", - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00Z", - "RequiredDate": "1997-10-22T00:00:00Z", - "ShippedDate": "1997-09-26T00:00:00Z", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10680, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10680, - "CustomerID": "OLDWO", - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00Z", - "RequiredDate": "1997-10-22T00:00:00Z", - "ShippedDate": "1997-09-26T00:00:00Z", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10680, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10706, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00Z", - "RequiredDate": "1997-11-13T00:00:00Z", - "ShippedDate": "1997-10-21T00:00:00Z", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10706, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10706, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00Z", - "RequiredDate": "1997-11-13T00:00:00Z", - "ShippedDate": "1997-10-21T00:00:00Z", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10706, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10706, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00Z", - "RequiredDate": "1997-11-13T00:00:00Z", - "ShippedDate": "1997-10-21T00:00:00Z", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10706, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10808, - "CustomerID": "OLDWO", - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00Z", - "RequiredDate": "1998-01-29T00:00:00Z", - "ShippedDate": "1998-01-09T00:00:00Z", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10808, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10808, - "CustomerID": "OLDWO", - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00Z", - "RequiredDate": "1998-01-29T00:00:00Z", - "ShippedDate": "1998-01-09T00:00:00Z", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10808, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.15, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10855, - "CustomerID": "OLDWO", - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10855, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10855, - "CustomerID": "OLDWO", - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10855, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10855, - "CustomerID": "OLDWO", - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10855, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10855, - "CustomerID": "OLDWO", - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10855, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10965, - "CustomerID": "OLDWO", - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-03-30T00:00:00Z", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10965, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11034, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-06-01T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11034, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11034, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-06-01T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11034, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11034, - "CustomerID": "OLDWO", - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-06-01T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": "99508", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11034, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "OTTIK", - "CompanyName": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "Region": null, - "PostalCode": "50739", - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10260, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00Z", - "RequiredDate": "1996-08-16T00:00:00Z", - "ShippedDate": "1996-07-29T00:00:00Z", - "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10260, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, - "Discount": 0.25, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10260, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00Z", - "RequiredDate": "1996-08-16T00:00:00Z", - "ShippedDate": "1996-07-29T00:00:00Z", - "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10260, - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10260, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00Z", - "RequiredDate": "1996-08-16T00:00:00Z", - "ShippedDate": "1996-07-29T00:00:00Z", - "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10260, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10260, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00Z", - "RequiredDate": "1996-08-16T00:00:00Z", - "ShippedDate": "1996-07-29T00:00:00Z", - "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10260, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.25, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10407, - "CustomerID": "OTTIK", - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00Z", - "RequiredDate": "1997-02-04T00:00:00Z", - "ShippedDate": "1997-01-30T00:00:00Z", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10407, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10407, - "CustomerID": "OTTIK", - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00Z", - "RequiredDate": "1997-02-04T00:00:00Z", - "ShippedDate": "1997-01-30T00:00:00Z", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10407, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10407, - "CustomerID": "OTTIK", - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00Z", - "RequiredDate": "1997-02-04T00:00:00Z", - "ShippedDate": "1997-01-30T00:00:00Z", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10407, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10508, - "CustomerID": "OTTIK", - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00Z", - "RequiredDate": "1997-05-14T00:00:00Z", - "ShippedDate": "1997-05-13T00:00:00Z", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10508, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10508, - "CustomerID": "OTTIK", - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00Z", - "RequiredDate": "1997-05-14T00:00:00Z", - "ShippedDate": "1997-05-13T00:00:00Z", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10508, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10554, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-05T00:00:00Z", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10554, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10554, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-05T00:00:00Z", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10554, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10554, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-05T00:00:00Z", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10554, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10554, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-05T00:00:00Z", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10554, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10580, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00Z", - "RequiredDate": "1997-07-24T00:00:00Z", - "ShippedDate": "1997-07-01T00:00:00Z", - "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10580, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10580, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00Z", - "RequiredDate": "1997-07-24T00:00:00Z", - "ShippedDate": "1997-07-01T00:00:00Z", - "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10580, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.05, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10580, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00Z", - "RequiredDate": "1997-07-24T00:00:00Z", - "ShippedDate": "1997-07-01T00:00:00Z", - "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10580, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10684, - "CustomerID": "OTTIK", - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00Z", - "RequiredDate": "1997-10-24T00:00:00Z", - "ShippedDate": "1997-09-30T00:00:00Z", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10684, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10684, - "CustomerID": "OTTIK", - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00Z", - "RequiredDate": "1997-10-24T00:00:00Z", - "ShippedDate": "1997-09-30T00:00:00Z", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10684, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10684, - "CustomerID": "OTTIK", - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00Z", - "RequiredDate": "1997-10-24T00:00:00Z", - "ShippedDate": "1997-09-30T00:00:00Z", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10684, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10766, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00Z", - "RequiredDate": "1998-01-02T00:00:00Z", - "ShippedDate": "1997-12-09T00:00:00Z", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10766, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10766, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00Z", - "RequiredDate": "1998-01-02T00:00:00Z", - "ShippedDate": "1997-12-09T00:00:00Z", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10766, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10766, - "CustomerID": "OTTIK", - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00Z", - "RequiredDate": "1998-01-02T00:00:00Z", - "ShippedDate": "1997-12-09T00:00:00Z", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10766, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10833, - "CustomerID": "OTTIK", - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00Z", - "RequiredDate": "1998-02-12T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10833, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10833, - "CustomerID": "OTTIK", - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00Z", - "RequiredDate": "1998-02-12T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10833, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10833, - "CustomerID": "OTTIK", - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00Z", - "RequiredDate": "1998-02-12T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10833, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10999, - "CustomerID": "OTTIK", - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-05-01T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10999, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10999, - "CustomerID": "OTTIK", - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-05-01T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10999, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10999, - "CustomerID": "OTTIK", - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-05-01T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10999, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.05, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11020, - "CustomerID": "OTTIK", - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-04-16T00:00:00Z", - "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipRegion": null, - "ShipPostalCode": "50739", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11020, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.15, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "PARIS", - "CompanyName": "Paris spécialités", - "ContactName": "Marie Bertrand", - "ContactTitle": "Owner", - "Address": "265, boulevard Charonne", - "City": "Paris", - "Region": null, - "PostalCode": "75012", - "Country": "France", - "Phone": "(1) 42.34.22.66", - "Fax": "(1) 42.34.22.77", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": null - }, - { - "CustomerID": "PERIC", - "CompanyName": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "Region": null, - "PostalCode": "05033", - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10322, - "CustomerID": "PERIC", - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00Z", - "RequiredDate": "1996-11-01T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10322, - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10354, - "CustomerID": "PERIC", - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00Z", - "RequiredDate": "1996-12-12T00:00:00Z", - "ShippedDate": "1996-11-20T00:00:00Z", - "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10354, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10354, - "CustomerID": "PERIC", - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00Z", - "RequiredDate": "1996-12-12T00:00:00Z", - "ShippedDate": "1996-11-20T00:00:00Z", - "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10354, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10474, - "CustomerID": "PERIC", - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00Z", - "RequiredDate": "1997-04-10T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10474, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10474, - "CustomerID": "PERIC", - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00Z", - "RequiredDate": "1997-04-10T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10474, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10474, - "CustomerID": "PERIC", - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00Z", - "RequiredDate": "1997-04-10T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10474, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10474, - "CustomerID": "PERIC", - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00Z", - "RequiredDate": "1997-04-10T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10474, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10502, - "CustomerID": "PERIC", - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00Z", - "RequiredDate": "1997-05-08T00:00:00Z", - "ShippedDate": "1997-04-29T00:00:00Z", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10502, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10502, - "CustomerID": "PERIC", - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00Z", - "RequiredDate": "1997-05-08T00:00:00Z", - "ShippedDate": "1997-04-29T00:00:00Z", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10502, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10502, - "CustomerID": "PERIC", - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00Z", - "RequiredDate": "1997-05-08T00:00:00Z", - "ShippedDate": "1997-04-29T00:00:00Z", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10502, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10995, - "CustomerID": "PERIC", - "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00Z", - "RequiredDate": "1998-04-30T00:00:00Z", - "ShippedDate": "1998-04-06T00:00:00Z", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10995, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10995, - "CustomerID": "PERIC", - "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00Z", - "RequiredDate": "1998-04-30T00:00:00Z", - "ShippedDate": "1998-04-06T00:00:00Z", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10995, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11073, - "CustomerID": "PERIC", - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11073, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11073, - "CustomerID": "PERIC", - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00Z", - "RequiredDate": "1998-06-02T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11073, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "PICCO", - "CompanyName": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "Region": null, - "PostalCode": "5020", - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10353, - "CustomerID": "PICCO", - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00Z", - "RequiredDate": "1996-12-11T00:00:00Z", - "ShippedDate": "1996-11-25T00:00:00Z", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10353, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0.2, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10353, - "CustomerID": "PICCO", - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00Z", - "RequiredDate": "1996-12-11T00:00:00Z", - "ShippedDate": "1996-11-25T00:00:00Z", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10353, - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10392, - "CustomerID": "PICCO", - "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00Z", - "RequiredDate": "1997-01-21T00:00:00Z", - "ShippedDate": "1997-01-01T00:00:00Z", - "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10392, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10427, - "CustomerID": "PICCO", - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00Z", - "RequiredDate": "1997-02-24T00:00:00Z", - "ShippedDate": "1997-03-03T00:00:00Z", - "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10427, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10489, - "CustomerID": "PICCO", - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00Z", - "RequiredDate": "1997-04-25T00:00:00Z", - "ShippedDate": "1997-04-09T00:00:00Z", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10489, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10489, - "CustomerID": "PICCO", - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00Z", - "RequiredDate": "1997-04-25T00:00:00Z", - "ShippedDate": "1997-04-09T00:00:00Z", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10489, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10530, - "CustomerID": "PICCO", - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00Z", - "RequiredDate": "1997-06-05T00:00:00Z", - "ShippedDate": "1997-05-12T00:00:00Z", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10530, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10530, - "CustomerID": "PICCO", - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00Z", - "RequiredDate": "1997-06-05T00:00:00Z", - "ShippedDate": "1997-05-12T00:00:00Z", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10530, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10530, - "CustomerID": "PICCO", - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00Z", - "RequiredDate": "1997-06-05T00:00:00Z", - "ShippedDate": "1997-05-12T00:00:00Z", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10530, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10530, - "CustomerID": "PICCO", - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00Z", - "RequiredDate": "1997-06-05T00:00:00Z", - "ShippedDate": "1997-05-12T00:00:00Z", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10530, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10597, - "CustomerID": "PICCO", - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00Z", - "RequiredDate": "1997-08-08T00:00:00Z", - "ShippedDate": "1997-07-18T00:00:00Z", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10597, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10597, - "CustomerID": "PICCO", - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00Z", - "RequiredDate": "1997-08-08T00:00:00Z", - "ShippedDate": "1997-07-18T00:00:00Z", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10597, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10597, - "CustomerID": "PICCO", - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00Z", - "RequiredDate": "1997-08-08T00:00:00Z", - "ShippedDate": "1997-07-18T00:00:00Z", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10597, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10686, - "CustomerID": "PICCO", - "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00Z", - "RequiredDate": "1997-10-28T00:00:00Z", - "ShippedDate": "1997-10-08T00:00:00Z", - "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10686, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10686, - "CustomerID": "PICCO", - "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00Z", - "RequiredDate": "1997-10-28T00:00:00Z", - "ShippedDate": "1997-10-08T00:00:00Z", - "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10686, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10747, - "CustomerID": "PICCO", - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00Z", - "RequiredDate": "1997-12-17T00:00:00Z", - "ShippedDate": "1997-11-26T00:00:00Z", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10747, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10747, - "CustomerID": "PICCO", - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00Z", - "RequiredDate": "1997-12-17T00:00:00Z", - "ShippedDate": "1997-11-26T00:00:00Z", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10747, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10747, - "CustomerID": "PICCO", - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00Z", - "RequiredDate": "1997-12-17T00:00:00Z", - "ShippedDate": "1997-11-26T00:00:00Z", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10747, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10747, - "CustomerID": "PICCO", - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00Z", - "RequiredDate": "1997-12-17T00:00:00Z", - "ShippedDate": "1997-11-26T00:00:00Z", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10747, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10844, - "CustomerID": "PICCO", - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00Z", - "RequiredDate": "1998-02-18T00:00:00Z", - "ShippedDate": "1998-01-26T00:00:00Z", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10844, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11053, - "CustomerID": "PICCO", - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00Z", - "RequiredDate": "1998-05-25T00:00:00Z", - "ShippedDate": "1998-04-29T00:00:00Z", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11053, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11053, - "CustomerID": "PICCO", - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00Z", - "RequiredDate": "1998-05-25T00:00:00Z", - "ShippedDate": "1998-04-29T00:00:00Z", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11053, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 11053, - "CustomerID": "PICCO", - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00Z", - "RequiredDate": "1998-05-25T00:00:00Z", - "ShippedDate": "1998-04-29T00:00:00Z", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipRegion": null, - "ShipPostalCode": "5020", - "ShipCountry": "Austria", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11053, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "PRINI", - "CompanyName": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "Region": null, - "PostalCode": "1756", - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10336, - "CustomerID": "PRINI", - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00Z", - "RequiredDate": "1996-11-20T00:00:00Z", - "ShippedDate": "1996-10-25T00:00:00Z", - "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10336, - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10397, - "CustomerID": "PRINI", - "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00Z", - "RequiredDate": "1997-01-24T00:00:00Z", - "ShippedDate": "1997-01-02T00:00:00Z", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10397, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.15, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10397, - "CustomerID": "PRINI", - "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00Z", - "RequiredDate": "1997-01-24T00:00:00Z", - "ShippedDate": "1997-01-02T00:00:00Z", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10397, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0.15, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10433, - "CustomerID": "PRINI", - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00Z", - "RequiredDate": "1997-03-03T00:00:00Z", - "ShippedDate": "1997-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10433, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10477, - "CustomerID": "PRINI", - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00Z", - "RequiredDate": "1997-04-14T00:00:00Z", - "ShippedDate": "1997-03-25T00:00:00Z", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10477, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10477, - "CustomerID": "PRINI", - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00Z", - "RequiredDate": "1997-04-14T00:00:00Z", - "ShippedDate": "1997-03-25T00:00:00Z", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10477, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10477, - "CustomerID": "PRINI", - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00Z", - "RequiredDate": "1997-04-14T00:00:00Z", - "ShippedDate": "1997-03-25T00:00:00Z", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10477, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11007, - "CustomerID": "PRINI", - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11007, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11007, - "CustomerID": "PRINI", - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11007, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11007, - "CustomerID": "PRINI", - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00Z", - "RequiredDate": "1998-05-06T00:00:00Z", - "ShippedDate": "1998-04-13T00:00:00Z", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipRegion": null, - "ShipPostalCode": "1756", - "ShipCountry": "Portugal", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11007, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "QUEDE", - "CompanyName": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Rio de Janeiro", - "Region": "RJ", - "PostalCode": "02389-673", - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10261, - "CustomerID": "QUEDE", - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00Z", - "RequiredDate": "1996-08-16T00:00:00Z", - "ShippedDate": "1996-07-30T00:00:00Z", - "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10261, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10261, - "CustomerID": "QUEDE", - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00Z", - "RequiredDate": "1996-08-16T00:00:00Z", - "ShippedDate": "1996-07-30T00:00:00Z", - "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10261, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10291, - "CustomerID": "QUEDE", - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00Z", - "RequiredDate": "1996-09-24T00:00:00Z", - "ShippedDate": "1996-09-04T00:00:00Z", - "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10291, - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10291, - "CustomerID": "QUEDE", - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00Z", - "RequiredDate": "1996-09-24T00:00:00Z", - "ShippedDate": "1996-09-04T00:00:00Z", - "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10291, - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10291, - "CustomerID": "QUEDE", - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00Z", - "RequiredDate": "1996-09-24T00:00:00Z", - "ShippedDate": "1996-09-04T00:00:00Z", - "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10291, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10379, - "CustomerID": "QUEDE", - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00Z", - "RequiredDate": "1997-01-08T00:00:00Z", - "ShippedDate": "1996-12-13T00:00:00Z", - "ShipVia": 1, - "Freight": 45.03, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10379, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10379, - "CustomerID": "QUEDE", - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00Z", - "RequiredDate": "1997-01-08T00:00:00Z", - "ShippedDate": "1996-12-13T00:00:00Z", - "ShipVia": 1, - "Freight": 45.03, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10379, - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10379, - "CustomerID": "QUEDE", - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00Z", - "RequiredDate": "1997-01-08T00:00:00Z", - "ShippedDate": "1996-12-13T00:00:00Z", - "ShipVia": 1, - "Freight": 45.03, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10379, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10421, - "CustomerID": "QUEDE", - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00Z", - "RequiredDate": "1997-03-04T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10421, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.15, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10421, - "CustomerID": "QUEDE", - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00Z", - "RequiredDate": "1997-03-04T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10421, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10421, - "CustomerID": "QUEDE", - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00Z", - "RequiredDate": "1997-03-04T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10421, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10421, - "CustomerID": "QUEDE", - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00Z", - "RequiredDate": "1997-03-04T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10421, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, - "Discount": 0.15, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10587, - "CustomerID": "QUEDE", - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00Z", - "RequiredDate": "1997-07-30T00:00:00Z", - "ShippedDate": "1997-07-09T00:00:00Z", - "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10587, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10587, - "CustomerID": "QUEDE", - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00Z", - "RequiredDate": "1997-07-30T00:00:00Z", - "ShippedDate": "1997-07-09T00:00:00Z", - "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10587, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10587, - "CustomerID": "QUEDE", - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00Z", - "RequiredDate": "1997-07-30T00:00:00Z", - "ShippedDate": "1997-07-09T00:00:00Z", - "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10587, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10647, - "CustomerID": "QUEDE", - "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00Z", - "RequiredDate": "1997-09-10T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10647, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10647, - "CustomerID": "QUEDE", - "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00Z", - "RequiredDate": "1997-09-10T00:00:00Z", - "ShippedDate": "1997-09-03T00:00:00Z", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10647, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10720, - "CustomerID": "QUEDE", - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00Z", - "RequiredDate": "1997-11-11T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10720, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10720, - "CustomerID": "QUEDE", - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00Z", - "RequiredDate": "1997-11-11T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10720, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10794, - "CustomerID": "QUEDE", - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00Z", - "RequiredDate": "1998-01-21T00:00:00Z", - "ShippedDate": "1998-01-02T00:00:00Z", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10794, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10794, - "CustomerID": "QUEDE", - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00Z", - "RequiredDate": "1998-01-21T00:00:00Z", - "ShippedDate": "1998-01-02T00:00:00Z", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10794, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10989, - "CustomerID": "QUEDE", - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10989, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10989, - "CustomerID": "QUEDE", - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10989, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10989, - "CustomerID": "QUEDE", - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-673", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10989, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "QUEEN", - "CompanyName": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": "05487-020", - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10372, - "CustomerID": "QUEEN", - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00Z", - "RequiredDate": "1997-01-01T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10372, - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, - "Discount": 0.25, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10372, - "CustomerID": "QUEEN", - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00Z", - "RequiredDate": "1997-01-01T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10372, - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10372, - "CustomerID": "QUEEN", - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00Z", - "RequiredDate": "1997-01-01T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10372, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, - "Discount": 0.25, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10372, - "CustomerID": "QUEEN", - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00Z", - "RequiredDate": "1997-01-01T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10372, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, - "Discount": 0.25, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10406, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-13T00:00:00Z", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10406, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10406, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-13T00:00:00Z", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10406, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10406, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-13T00:00:00Z", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10406, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10406, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-13T00:00:00Z", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10406, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10406, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-13T00:00:00Z", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10406, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 2, - "Discount": 0.1, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10487, - "CustomerID": "QUEEN", - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00Z", - "RequiredDate": "1997-04-23T00:00:00Z", - "ShippedDate": "1997-03-28T00:00:00Z", - "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10487, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10487, - "CustomerID": "QUEEN", - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00Z", - "RequiredDate": "1997-04-23T00:00:00Z", - "ShippedDate": "1997-03-28T00:00:00Z", - "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10487, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10487, - "CustomerID": "QUEEN", - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00Z", - "RequiredDate": "1997-04-23T00:00:00Z", - "ShippedDate": "1997-03-28T00:00:00Z", - "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10487, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10637, - "CustomerID": "QUEEN", - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00Z", - "RequiredDate": "1997-09-16T00:00:00Z", - "ShippedDate": "1997-08-26T00:00:00Z", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10637, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10637, - "CustomerID": "QUEEN", - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00Z", - "RequiredDate": "1997-09-16T00:00:00Z", - "ShippedDate": "1997-08-26T00:00:00Z", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10637, - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 25, - "Discount": 0.05, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10637, - "CustomerID": "QUEEN", - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00Z", - "RequiredDate": "1997-09-16T00:00:00Z", - "ShippedDate": "1997-08-26T00:00:00Z", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10637, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10659, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00Z", - "RequiredDate": "1997-10-03T00:00:00Z", - "ShippedDate": "1997-09-10T00:00:00Z", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10659, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10659, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00Z", - "RequiredDate": "1997-10-03T00:00:00Z", - "ShippedDate": "1997-09-10T00:00:00Z", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10659, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 24, - "Discount": 0.05, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10659, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00Z", - "RequiredDate": "1997-10-03T00:00:00Z", - "ShippedDate": "1997-09-10T00:00:00Z", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10659, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10704, - "CustomerID": "QUEEN", - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00Z", - "RequiredDate": "1997-11-11T00:00:00Z", - "ShippedDate": "1997-11-07T00:00:00Z", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10704, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10704, - "CustomerID": "QUEEN", - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00Z", - "RequiredDate": "1997-11-11T00:00:00Z", - "ShippedDate": "1997-11-07T00:00:00Z", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10704, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10704, - "CustomerID": "QUEEN", - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00Z", - "RequiredDate": "1997-11-11T00:00:00Z", - "ShippedDate": "1997-11-07T00:00:00Z", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10704, - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 48, - "ProductName": "Chocolade", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 pkgs.", - "UnitPrice": 12.75, - "UnitsInStock": 15, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10728, - "CustomerID": "QUEEN", - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00Z", - "RequiredDate": "1997-12-02T00:00:00Z", - "ShippedDate": "1997-11-11T00:00:00Z", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10728, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10728, - "CustomerID": "QUEEN", - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00Z", - "RequiredDate": "1997-12-02T00:00:00Z", - "ShippedDate": "1997-11-11T00:00:00Z", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10728, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10728, - "CustomerID": "QUEEN", - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00Z", - "RequiredDate": "1997-12-02T00:00:00Z", - "ShippedDate": "1997-11-11T00:00:00Z", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10728, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10728, - "CustomerID": "QUEEN", - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00Z", - "RequiredDate": "1997-12-02T00:00:00Z", - "ShippedDate": "1997-11-11T00:00:00Z", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10728, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10786, - "CustomerID": "QUEEN", - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00Z", - "RequiredDate": "1998-01-16T00:00:00Z", - "ShippedDate": "1997-12-23T00:00:00Z", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10786, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10786, - "CustomerID": "QUEEN", - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00Z", - "RequiredDate": "1998-01-16T00:00:00Z", - "ShippedDate": "1997-12-23T00:00:00Z", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10786, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10786, - "CustomerID": "QUEEN", - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00Z", - "RequiredDate": "1998-01-16T00:00:00Z", - "ShippedDate": "1997-12-23T00:00:00Z", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10786, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10868, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10868, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10868, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10868, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10868, - "CustomerID": "QUEEN", - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10868, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10913, - "CustomerID": "QUEEN", - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10913, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10913, - "CustomerID": "QUEEN", - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10913, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10913, - "CustomerID": "QUEEN", - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10913, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10914, - "CustomerID": "QUEEN", - "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00Z", - "RequiredDate": "1998-03-27T00:00:00Z", - "ShippedDate": "1998-03-02T00:00:00Z", - "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10914, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10961, - "CustomerID": "QUEEN", - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-03-30T00:00:00Z", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10961, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.05, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10961, - "CustomerID": "QUEEN", - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-03-30T00:00:00Z", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10961, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11068, - "CustomerID": "QUEEN", - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00Z", - "RequiredDate": "1998-06-01T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11068, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.15, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11068, - "CustomerID": "QUEEN", - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00Z", - "RequiredDate": "1998-06-01T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11068, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.15, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11068, - "CustomerID": "QUEEN", - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00Z", - "RequiredDate": "1998-06-01T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05487-020", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11068, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.15, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "QUICK", - "CompanyName": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "Region": null, - "PostalCode": "01307", - "Country": "Germany", - "Phone": "0372-035188", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10273, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00Z", - "RequiredDate": "1996-09-02T00:00:00Z", - "ShippedDate": "1996-08-12T00:00:00Z", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10273, - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.05, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10273, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00Z", - "RequiredDate": "1996-09-02T00:00:00Z", - "ShippedDate": "1996-08-12T00:00:00Z", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10273, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10273, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00Z", - "RequiredDate": "1996-09-02T00:00:00Z", - "ShippedDate": "1996-08-12T00:00:00Z", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10273, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10273, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00Z", - "RequiredDate": "1996-09-02T00:00:00Z", - "ShippedDate": "1996-08-12T00:00:00Z", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10273, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10273, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00Z", - "RequiredDate": "1996-09-02T00:00:00Z", - "ShippedDate": "1996-08-12T00:00:00Z", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10273, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, - "Discount": 0.05, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10285, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00Z", - "RequiredDate": "1996-09-17T00:00:00Z", - "ShippedDate": "1996-08-26T00:00:00Z", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10285, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10285, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00Z", - "RequiredDate": "1996-09-17T00:00:00Z", - "ShippedDate": "1996-08-26T00:00:00Z", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10285, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10285, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00Z", - "RequiredDate": "1996-09-17T00:00:00Z", - "ShippedDate": "1996-08-26T00:00:00Z", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10285, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10286, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00Z", - "RequiredDate": "1996-09-18T00:00:00Z", - "ShippedDate": "1996-08-30T00:00:00Z", - "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10286, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10286, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00Z", - "RequiredDate": "1996-09-18T00:00:00Z", - "ShippedDate": "1996-08-30T00:00:00Z", - "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10286, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10313, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00Z", - "RequiredDate": "1996-10-22T00:00:00Z", - "ShippedDate": "1996-10-04T00:00:00Z", - "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10313, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10345, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00Z", - "RequiredDate": "1996-12-02T00:00:00Z", - "ShippedDate": "1996-11-11T00:00:00Z", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10345, - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10345, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00Z", - "RequiredDate": "1996-12-02T00:00:00Z", - "ShippedDate": "1996-11-11T00:00:00Z", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10345, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10345, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00Z", - "RequiredDate": "1996-12-02T00:00:00Z", - "ShippedDate": "1996-11-11T00:00:00Z", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10345, - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10361, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00Z", - "RequiredDate": "1996-12-20T00:00:00Z", - "ShippedDate": "1996-12-03T00:00:00Z", - "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10361, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10361, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00Z", - "RequiredDate": "1996-12-20T00:00:00Z", - "ShippedDate": "1996-12-03T00:00:00Z", - "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10361, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10418, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00Z", - "RequiredDate": "1997-02-14T00:00:00Z", - "ShippedDate": "1997-01-24T00:00:00Z", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10418, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10418, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00Z", - "RequiredDate": "1997-02-14T00:00:00Z", - "ShippedDate": "1997-01-24T00:00:00Z", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10418, - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10418, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00Z", - "RequiredDate": "1997-02-14T00:00:00Z", - "ShippedDate": "1997-01-24T00:00:00Z", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10418, - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10418, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00Z", - "RequiredDate": "1997-02-14T00:00:00Z", - "ShippedDate": "1997-01-24T00:00:00Z", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10418, - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10451, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-03-12T00:00:00Z", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10451, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10451, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-03-12T00:00:00Z", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10451, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10451, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-03-12T00:00:00Z", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10451, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, - "Discount": 0.1, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10451, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-03-12T00:00:00Z", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10451, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, - "Discount": 0.1, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10515, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00Z", - "RequiredDate": "1997-05-07T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10515, - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.15, - "Products": [ - { - "ProductID": 9, - "ProductName": "Mishi Kobe Niku", - "SupplierID": 4, - "CategoryID": 6, - "QuantityPerUnit": "18 - 500 g pkgs.", - "UnitPrice": 97, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10515, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00Z", - "RequiredDate": "1997-05-07T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10515, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10515, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00Z", - "RequiredDate": "1997-05-07T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10515, - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, - "Discount": 0, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10515, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00Z", - "RequiredDate": "1997-05-07T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10515, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.15, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10515, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00Z", - "RequiredDate": "1997-05-07T00:00:00Z", - "ShippedDate": "1997-05-23T00:00:00Z", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10515, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.15, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10527, - "CustomerID": "QUICK", - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00Z", - "RequiredDate": "1997-06-02T00:00:00Z", - "ShippedDate": "1997-05-07T00:00:00Z", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10527, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10527, - "CustomerID": "QUICK", - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00Z", - "RequiredDate": "1997-06-02T00:00:00Z", - "ShippedDate": "1997-05-07T00:00:00Z", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10527, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10540, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00Z", - "RequiredDate": "1997-06-16T00:00:00Z", - "ShippedDate": "1997-06-13T00:00:00Z", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10540, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10540, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00Z", - "RequiredDate": "1997-06-16T00:00:00Z", - "ShippedDate": "1997-06-13T00:00:00Z", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10540, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10540, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00Z", - "RequiredDate": "1997-06-16T00:00:00Z", - "ShippedDate": "1997-06-13T00:00:00Z", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10540, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10540, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00Z", - "RequiredDate": "1997-06-16T00:00:00Z", - "ShippedDate": "1997-06-13T00:00:00Z", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10540, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10549, - "CustomerID": "QUICK", - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00Z", - "RequiredDate": "1997-06-10T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10549, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.15, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10549, - "CustomerID": "QUICK", - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00Z", - "RequiredDate": "1997-06-10T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10549, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.15, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10549, - "CustomerID": "QUICK", - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00Z", - "RequiredDate": "1997-06-10T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10549, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.15, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10588, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00Z", - "RequiredDate": "1997-07-31T00:00:00Z", - "ShippedDate": "1997-07-10T00:00:00Z", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10588, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10588, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00Z", - "RequiredDate": "1997-07-31T00:00:00Z", - "ShippedDate": "1997-07-10T00:00:00Z", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10588, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10658, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00Z", - "RequiredDate": "1997-10-03T00:00:00Z", - "ShippedDate": "1997-09-08T00:00:00Z", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10658, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10658, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00Z", - "RequiredDate": "1997-10-03T00:00:00Z", - "ShippedDate": "1997-09-08T00:00:00Z", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10658, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.05, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10658, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00Z", - "RequiredDate": "1997-10-03T00:00:00Z", - "ShippedDate": "1997-09-08T00:00:00Z", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10658, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.05, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10658, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00Z", - "RequiredDate": "1997-10-03T00:00:00Z", - "ShippedDate": "1997-09-08T00:00:00Z", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10658, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.05, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10691, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00Z", - "RequiredDate": "1997-11-14T00:00:00Z", - "ShippedDate": "1997-10-22T00:00:00Z", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10691, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10691, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00Z", - "RequiredDate": "1997-11-14T00:00:00Z", - "ShippedDate": "1997-10-22T00:00:00Z", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10691, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10691, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00Z", - "RequiredDate": "1997-11-14T00:00:00Z", - "ShippedDate": "1997-10-22T00:00:00Z", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10691, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10691, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00Z", - "RequiredDate": "1997-11-14T00:00:00Z", - "ShippedDate": "1997-10-22T00:00:00Z", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10691, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10691, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00Z", - "RequiredDate": "1997-11-14T00:00:00Z", - "ShippedDate": "1997-10-22T00:00:00Z", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10691, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10694, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00Z", - "RequiredDate": "1997-11-03T00:00:00Z", - "ShippedDate": "1997-10-09T00:00:00Z", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10694, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10694, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00Z", - "RequiredDate": "1997-11-03T00:00:00Z", - "ShippedDate": "1997-10-09T00:00:00Z", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10694, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10694, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00Z", - "RequiredDate": "1997-11-03T00:00:00Z", - "ShippedDate": "1997-10-09T00:00:00Z", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10694, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10721, - "CustomerID": "QUICK", - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00Z", - "RequiredDate": "1997-11-26T00:00:00Z", - "ShippedDate": "1997-10-31T00:00:00Z", - "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10721, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10745, - "CustomerID": "QUICK", - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00Z", - "RequiredDate": "1997-12-16T00:00:00Z", - "ShippedDate": "1997-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10745, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10745, - "CustomerID": "QUICK", - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00Z", - "RequiredDate": "1997-12-16T00:00:00Z", - "ShippedDate": "1997-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10745, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10745, - "CustomerID": "QUICK", - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00Z", - "RequiredDate": "1997-12-16T00:00:00Z", - "ShippedDate": "1997-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10745, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10745, - "CustomerID": "QUICK", - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00Z", - "RequiredDate": "1997-12-16T00:00:00Z", - "ShippedDate": "1997-11-27T00:00:00Z", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10745, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10765, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00Z", - "RequiredDate": "1998-01-01T00:00:00Z", - "ShippedDate": "1997-12-09T00:00:00Z", - "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10765, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10788, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00Z", - "RequiredDate": "1998-01-19T00:00:00Z", - "ShippedDate": "1998-01-19T00:00:00Z", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10788, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10788, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00Z", - "RequiredDate": "1998-01-19T00:00:00Z", - "ShippedDate": "1998-01-19T00:00:00Z", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10788, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10845, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10845, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10845, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10845, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10845, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10845, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10845, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10845, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10845, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10845, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10865, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00Z", - "RequiredDate": "1998-02-16T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10865, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10865, - "CustomerID": "QUICK", - "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00Z", - "RequiredDate": "1998-02-16T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10865, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.05, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10878, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00Z", - "RequiredDate": "1998-03-10T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10878, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10938, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00Z", - "RequiredDate": "1998-04-07T00:00:00Z", - "ShippedDate": "1998-03-16T00:00:00Z", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10938, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10938, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00Z", - "RequiredDate": "1998-04-07T00:00:00Z", - "ShippedDate": "1998-03-16T00:00:00Z", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10938, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10938, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00Z", - "RequiredDate": "1998-04-07T00:00:00Z", - "ShippedDate": "1998-03-16T00:00:00Z", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10938, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10938, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00Z", - "RequiredDate": "1998-04-07T00:00:00Z", - "ShippedDate": "1998-03-16T00:00:00Z", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10938, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10962, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10962, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10962, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10962, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10962, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10962, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10962, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10962, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10962, - "CustomerID": "QUICK", - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-03-23T00:00:00Z", - "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10962, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10991, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-04-29T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10991, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10991, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-04-29T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10991, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10991, - "CustomerID": "QUICK", - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-04-29T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10991, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 90, - "Discount": 0.2, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10996, - "CustomerID": "QUICK", - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00Z", - "RequiredDate": "1998-04-30T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10996, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11021, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11021, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11021, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11021, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11021, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11021, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11021, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11021, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11021, - "CustomerID": "QUICK", - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00Z", - "RequiredDate": "1998-05-12T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipRegion": null, - "ShipPostalCode": "01307", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11021, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "RANCH", - "CompanyName": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "Region": null, - "PostalCode": "1010", - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10448, - "CustomerID": "RANCH", - "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00Z", - "RequiredDate": "1997-03-17T00:00:00Z", - "ShippedDate": "1997-02-24T00:00:00Z", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10448, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10448, - "CustomerID": "RANCH", - "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00Z", - "RequiredDate": "1997-03-17T00:00:00Z", - "ShippedDate": "1997-02-24T00:00:00Z", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10448, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10716, - "CustomerID": "RANCH", - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00Z", - "RequiredDate": "1997-11-21T00:00:00Z", - "ShippedDate": "1997-10-27T00:00:00Z", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10716, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10716, - "CustomerID": "RANCH", - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00Z", - "RequiredDate": "1997-11-21T00:00:00Z", - "ShippedDate": "1997-10-27T00:00:00Z", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10716, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10716, - "CustomerID": "RANCH", - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00Z", - "RequiredDate": "1997-11-21T00:00:00Z", - "ShippedDate": "1997-10-27T00:00:00Z", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10716, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10828, - "CustomerID": "RANCH", - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10828, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10828, - "CustomerID": "RANCH", - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-02-04T00:00:00Z", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10828, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10916, - "CustomerID": "RANCH", - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00Z", - "RequiredDate": "1998-03-27T00:00:00Z", - "ShippedDate": "1998-03-09T00:00:00Z", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10916, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10916, - "CustomerID": "RANCH", - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00Z", - "RequiredDate": "1998-03-27T00:00:00Z", - "ShippedDate": "1998-03-09T00:00:00Z", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10916, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10916, - "CustomerID": "RANCH", - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00Z", - "RequiredDate": "1998-03-27T00:00:00Z", - "ShippedDate": "1998-03-09T00:00:00Z", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10916, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11019, - "CustomerID": "RANCH", - "EmployeeID": 6, - "OrderDate": "1998-04-13T00:00:00Z", - "RequiredDate": "1998-05-11T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 3.17, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11019, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11019, - "CustomerID": "RANCH", - "EmployeeID": 6, - "OrderDate": "1998-04-13T00:00:00Z", - "RequiredDate": "1998-05-11T00:00:00Z", - "ShippedDate": null, - "ShipVia": 3, - "Freight": 3.17, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipRegion": null, - "ShipPostalCode": "1010", - "ShipCountry": "Argentina", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11019, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "RATTC", - "CompanyName": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Assistant Sales Representative", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": "87110", - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10262, - "CustomerID": "RATTC", - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00Z", - "RequiredDate": "1996-08-19T00:00:00Z", - "ShippedDate": "1996-07-25T00:00:00Z", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10262, - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10262, - "CustomerID": "RATTC", - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00Z", - "RequiredDate": "1996-08-19T00:00:00Z", - "ShippedDate": "1996-07-25T00:00:00Z", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10262, - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10262, - "CustomerID": "RATTC", - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00Z", - "RequiredDate": "1996-08-19T00:00:00Z", - "ShippedDate": "1996-07-25T00:00:00Z", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10262, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10272, - "CustomerID": "RATTC", - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00Z", - "RequiredDate": "1996-08-30T00:00:00Z", - "ShippedDate": "1996-08-06T00:00:00Z", - "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10272, - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10272, - "CustomerID": "RATTC", - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00Z", - "RequiredDate": "1996-08-30T00:00:00Z", - "ShippedDate": "1996-08-06T00:00:00Z", - "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10272, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10272, - "CustomerID": "RATTC", - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00Z", - "RequiredDate": "1996-08-30T00:00:00Z", - "ShippedDate": "1996-08-06T00:00:00Z", - "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10272, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10294, - "CustomerID": "RATTC", - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00Z", - "RequiredDate": "1996-09-27T00:00:00Z", - "ShippedDate": "1996-09-05T00:00:00Z", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10294, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10294, - "CustomerID": "RATTC", - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00Z", - "RequiredDate": "1996-09-27T00:00:00Z", - "ShippedDate": "1996-09-05T00:00:00Z", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10294, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10294, - "CustomerID": "RATTC", - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00Z", - "RequiredDate": "1996-09-27T00:00:00Z", - "ShippedDate": "1996-09-05T00:00:00Z", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10294, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10294, - "CustomerID": "RATTC", - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00Z", - "RequiredDate": "1996-09-27T00:00:00Z", - "ShippedDate": "1996-09-05T00:00:00Z", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10294, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10294, - "CustomerID": "RATTC", - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00Z", - "RequiredDate": "1996-09-27T00:00:00Z", - "ShippedDate": "1996-09-05T00:00:00Z", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10294, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10314, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00Z", - "RequiredDate": "1996-10-23T00:00:00Z", - "ShippedDate": "1996-10-04T00:00:00Z", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10314, - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10314, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00Z", - "RequiredDate": "1996-10-23T00:00:00Z", - "ShippedDate": "1996-10-04T00:00:00Z", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10314, - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10314, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00Z", - "RequiredDate": "1996-10-23T00:00:00Z", - "ShippedDate": "1996-10-04T00:00:00Z", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10314, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10316, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00Z", - "RequiredDate": "1996-10-25T00:00:00Z", - "ShippedDate": "1996-10-08T00:00:00Z", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10316, - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10316, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00Z", - "RequiredDate": "1996-10-25T00:00:00Z", - "ShippedDate": "1996-10-08T00:00:00Z", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10316, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10346, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00Z", - "RequiredDate": "1996-12-17T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10346, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10346, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00Z", - "RequiredDate": "1996-12-17T00:00:00Z", - "ShippedDate": "1996-11-08T00:00:00Z", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10346, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10401, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00Z", - "RequiredDate": "1997-01-29T00:00:00Z", - "ShippedDate": "1997-01-10T00:00:00Z", - "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10401, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10401, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00Z", - "RequiredDate": "1997-01-29T00:00:00Z", - "ShippedDate": "1997-01-10T00:00:00Z", - "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10401, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10401, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00Z", - "RequiredDate": "1997-01-29T00:00:00Z", - "ShippedDate": "1997-01-10T00:00:00Z", - "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10401, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10401, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00Z", - "RequiredDate": "1997-01-29T00:00:00Z", - "ShippedDate": "1997-01-10T00:00:00Z", - "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10401, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10479, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00Z", - "RequiredDate": "1997-04-16T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10479, - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10479, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00Z", - "RequiredDate": "1997-04-16T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10479, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10479, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00Z", - "RequiredDate": "1997-04-16T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10479, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10479, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00Z", - "RequiredDate": "1997-04-16T00:00:00Z", - "ShippedDate": "1997-03-21T00:00:00Z", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10479, - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10564, - "CustomerID": "RATTC", - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00Z", - "RequiredDate": "1997-07-08T00:00:00Z", - "ShippedDate": "1997-06-16T00:00:00Z", - "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10564, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.05, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10564, - "CustomerID": "RATTC", - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00Z", - "RequiredDate": "1997-07-08T00:00:00Z", - "ShippedDate": "1997-06-16T00:00:00Z", - "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10564, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10564, - "CustomerID": "RATTC", - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00Z", - "RequiredDate": "1997-07-08T00:00:00Z", - "ShippedDate": "1997-06-16T00:00:00Z", - "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10564, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.05, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10569, - "CustomerID": "RATTC", - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00Z", - "RequiredDate": "1997-07-14T00:00:00Z", - "ShippedDate": "1997-07-11T00:00:00Z", - "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10569, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10569, - "CustomerID": "RATTC", - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00Z", - "RequiredDate": "1997-07-14T00:00:00Z", - "ShippedDate": "1997-07-11T00:00:00Z", - "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10569, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10598, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00Z", - "RequiredDate": "1997-08-11T00:00:00Z", - "ShippedDate": "1997-07-18T00:00:00Z", - "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10598, - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10598, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00Z", - "RequiredDate": "1997-08-11T00:00:00Z", - "ShippedDate": "1997-07-18T00:00:00Z", - "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10598, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10761, - "CustomerID": "RATTC", - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00Z", - "RequiredDate": "1997-12-30T00:00:00Z", - "ShippedDate": "1997-12-08T00:00:00Z", - "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10761, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10761, - "CustomerID": "RATTC", - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00Z", - "RequiredDate": "1997-12-30T00:00:00Z", - "ShippedDate": "1997-12-08T00:00:00Z", - "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10761, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10820, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00Z", - "RequiredDate": "1998-02-04T00:00:00Z", - "ShippedDate": "1998-01-13T00:00:00Z", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10820, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10852, - "CustomerID": "RATTC", - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00Z", - "RequiredDate": "1998-02-09T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10852, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10852, - "CustomerID": "RATTC", - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00Z", - "RequiredDate": "1998-02-09T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10852, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10852, - "CustomerID": "RATTC", - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00Z", - "RequiredDate": "1998-02-09T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10852, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10889, - "CustomerID": "RATTC", - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00Z", - "RequiredDate": "1998-03-16T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10889, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10889, - "CustomerID": "RATTC", - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00Z", - "RequiredDate": "1998-03-16T00:00:00Z", - "ShippedDate": "1998-02-23T00:00:00Z", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10889, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10988, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10988, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10988, - "CustomerID": "RATTC", - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00Z", - "RequiredDate": "1998-04-28T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10988, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11000, - "CustomerID": "RATTC", - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-14T00:00:00Z", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11000, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 11000, - "CustomerID": "RATTC", - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-14T00:00:00Z", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11000, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11000, - "CustomerID": "RATTC", - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-14T00:00:00Z", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11000, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.05, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.05, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.03, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.03, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.05, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.03, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 66, - "ProductName": "Louisiana Hot Spiced Okra", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "24 - 8 oz jars", - "UnitPrice": 17, - "UnitsInStock": 4, - "UnitsOnOrder": 100, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.01, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11077, - "CustomerID": "RATTC", - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": "87110", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11077, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "REGGC", - "CompanyName": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "Region": null, - "PostalCode": "42100", - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10288, - "CustomerID": "REGGC", - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00Z", - "RequiredDate": "1996-09-20T00:00:00Z", - "ShippedDate": "1996-09-03T00:00:00Z", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10288, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10288, - "CustomerID": "REGGC", - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00Z", - "RequiredDate": "1996-09-20T00:00:00Z", - "ShippedDate": "1996-09-03T00:00:00Z", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10288, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10428, - "CustomerID": "REGGC", - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00Z", - "RequiredDate": "1997-02-25T00:00:00Z", - "ShippedDate": "1997-02-04T00:00:00Z", - "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10428, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10443, - "CustomerID": "REGGC", - "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00Z", - "RequiredDate": "1997-03-12T00:00:00Z", - "ShippedDate": "1997-02-14T00:00:00Z", - "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10443, - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10443, - "CustomerID": "REGGC", - "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00Z", - "RequiredDate": "1997-03-12T00:00:00Z", - "ShippedDate": "1997-02-14T00:00:00Z", - "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10443, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10562, - "CustomerID": "REGGC", - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00Z", - "RequiredDate": "1997-07-07T00:00:00Z", - "ShippedDate": "1997-06-12T00:00:00Z", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10562, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10562, - "CustomerID": "REGGC", - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00Z", - "RequiredDate": "1997-07-07T00:00:00Z", - "ShippedDate": "1997-06-12T00:00:00Z", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10562, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10586, - "CustomerID": "REGGC", - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00Z", - "RequiredDate": "1997-07-30T00:00:00Z", - "ShippedDate": "1997-07-09T00:00:00Z", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10586, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.15, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10655, - "CustomerID": "REGGC", - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00Z", - "RequiredDate": "1997-10-01T00:00:00Z", - "ShippedDate": "1997-09-11T00:00:00Z", - "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10655, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10727, - "CustomerID": "REGGC", - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00Z", - "RequiredDate": "1997-12-01T00:00:00Z", - "ShippedDate": "1997-12-05T00:00:00Z", - "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10727, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10727, - "CustomerID": "REGGC", - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00Z", - "RequiredDate": "1997-12-01T00:00:00Z", - "ShippedDate": "1997-12-05T00:00:00Z", - "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10727, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10727, - "CustomerID": "REGGC", - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00Z", - "RequiredDate": "1997-12-01T00:00:00Z", - "ShippedDate": "1997-12-05T00:00:00Z", - "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10727, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10812, - "CustomerID": "REGGC", - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00Z", - "RequiredDate": "1998-01-30T00:00:00Z", - "ShippedDate": "1998-01-12T00:00:00Z", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10812, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10812, - "CustomerID": "REGGC", - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00Z", - "RequiredDate": "1998-01-30T00:00:00Z", - "ShippedDate": "1998-01-12T00:00:00Z", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10812, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10812, - "CustomerID": "REGGC", - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00Z", - "RequiredDate": "1998-01-30T00:00:00Z", - "ShippedDate": "1998-01-12T00:00:00Z", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10812, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10908, - "CustomerID": "REGGC", - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-06T00:00:00Z", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10908, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10908, - "CustomerID": "REGGC", - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-06T00:00:00Z", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10908, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.05, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10942, - "CustomerID": "REGGC", - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10942, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11010, - "CustomerID": "REGGC", - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-05-07T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11010, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11010, - "CustomerID": "REGGC", - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-05-07T00:00:00Z", - "ShippedDate": "1998-04-21T00:00:00Z", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11010, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11062, - "CustomerID": "REGGC", - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00Z", - "RequiredDate": "1998-05-28T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11062, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11062, - "CustomerID": "REGGC", - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00Z", - "RequiredDate": "1998-05-28T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipRegion": null, - "ShipPostalCode": "42100", - "ShipCountry": "Italy", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11062, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0.2, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "RICAR", - "CompanyName": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Assistant Sales Agent", - "Address": "Av. Copacabana, 267", - "City": "Rio de Janeiro", - "Region": "RJ", - "PostalCode": "02389-890", - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10287, - "CustomerID": "RICAR", - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00Z", - "RequiredDate": "1996-09-19T00:00:00Z", - "ShippedDate": "1996-08-28T00:00:00Z", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10287, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10287, - "CustomerID": "RICAR", - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00Z", - "RequiredDate": "1996-09-19T00:00:00Z", - "ShippedDate": "1996-08-28T00:00:00Z", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10287, - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10287, - "CustomerID": "RICAR", - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00Z", - "RequiredDate": "1996-09-19T00:00:00Z", - "ShippedDate": "1996-08-28T00:00:00Z", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10287, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10299, - "CustomerID": "RICAR", - "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00Z", - "RequiredDate": "1996-10-04T00:00:00Z", - "ShippedDate": "1996-09-13T00:00:00Z", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10299, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10299, - "CustomerID": "RICAR", - "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00Z", - "RequiredDate": "1996-10-04T00:00:00Z", - "ShippedDate": "1996-09-13T00:00:00Z", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10299, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10447, - "CustomerID": "RICAR", - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00Z", - "RequiredDate": "1997-03-14T00:00:00Z", - "ShippedDate": "1997-03-07T00:00:00Z", - "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10447, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10447, - "CustomerID": "RICAR", - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00Z", - "RequiredDate": "1997-03-14T00:00:00Z", - "ShippedDate": "1997-03-07T00:00:00Z", - "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10447, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10447, - "CustomerID": "RICAR", - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00Z", - "RequiredDate": "1997-03-14T00:00:00Z", - "ShippedDate": "1997-03-07T00:00:00Z", - "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10447, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10481, - "CustomerID": "RICAR", - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00Z", - "RequiredDate": "1997-04-17T00:00:00Z", - "ShippedDate": "1997-03-25T00:00:00Z", - "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10481, - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10481, - "CustomerID": "RICAR", - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00Z", - "RequiredDate": "1997-04-17T00:00:00Z", - "ShippedDate": "1997-03-25T00:00:00Z", - "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10481, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10563, - "CustomerID": "RICAR", - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00Z", - "RequiredDate": "1997-07-22T00:00:00Z", - "ShippedDate": "1997-06-24T00:00:00Z", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10563, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10563, - "CustomerID": "RICAR", - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00Z", - "RequiredDate": "1997-07-22T00:00:00Z", - "ShippedDate": "1997-06-24T00:00:00Z", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10563, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10622, - "CustomerID": "RICAR", - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00Z", - "RequiredDate": "1997-09-03T00:00:00Z", - "ShippedDate": "1997-08-11T00:00:00Z", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10622, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10622, - "CustomerID": "RICAR", - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00Z", - "RequiredDate": "1997-09-03T00:00:00Z", - "ShippedDate": "1997-08-11T00:00:00Z", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10622, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0.2, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10648, - "CustomerID": "RICAR", - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00Z", - "RequiredDate": "1997-10-09T00:00:00Z", - "ShippedDate": "1997-09-09T00:00:00Z", - "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10648, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10648, - "CustomerID": "RICAR", - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00Z", - "RequiredDate": "1997-10-09T00:00:00Z", - "ShippedDate": "1997-09-09T00:00:00Z", - "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10648, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10813, - "CustomerID": "RICAR", - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00Z", - "RequiredDate": "1998-02-02T00:00:00Z", - "ShippedDate": "1998-01-09T00:00:00Z", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10813, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0.2, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10813, - "CustomerID": "RICAR", - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00Z", - "RequiredDate": "1998-02-02T00:00:00Z", - "ShippedDate": "1998-01-09T00:00:00Z", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10813, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10851, - "CustomerID": "RICAR", - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00Z", - "RequiredDate": "1998-02-23T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10851, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0.05, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10851, - "CustomerID": "RICAR", - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00Z", - "RequiredDate": "1998-02-23T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10851, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10851, - "CustomerID": "RICAR", - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00Z", - "RequiredDate": "1998-02-23T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10851, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10851, - "CustomerID": "RICAR", - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00Z", - "RequiredDate": "1998-02-23T00:00:00Z", - "ShippedDate": "1998-02-02T00:00:00Z", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10851, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.05, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10877, - "CustomerID": "RICAR", - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00Z", - "RequiredDate": "1998-03-09T00:00:00Z", - "ShippedDate": "1998-02-19T00:00:00Z", - "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10877, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10877, - "CustomerID": "RICAR", - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00Z", - "RequiredDate": "1998-03-09T00:00:00Z", - "ShippedDate": "1998-02-19T00:00:00Z", - "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10877, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11059, - "CustomerID": "RICAR", - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00Z", - "RequiredDate": "1998-06-10T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11059, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 11059, - "CustomerID": "RICAR", - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00Z", - "RequiredDate": "1998-06-10T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11059, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11059, - "CustomerID": "RICAR", - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00Z", - "RequiredDate": "1998-06-10T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Rio de Janeiro", - "ShipRegion": "RJ", - "ShipPostalCode": "02389-890", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11059, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "RICSU", - "CompanyName": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "Region": null, - "PostalCode": "1203", - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10255, - "CustomerID": "RICSU", - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00Z", - "RequiredDate": "1996-08-09T00:00:00Z", - "ShippedDate": "1996-07-15T00:00:00Z", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10255, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10255, - "CustomerID": "RICSU", - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00Z", - "RequiredDate": "1996-08-09T00:00:00Z", - "ShippedDate": "1996-07-15T00:00:00Z", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10255, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10255, - "CustomerID": "RICSU", - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00Z", - "RequiredDate": "1996-08-09T00:00:00Z", - "ShippedDate": "1996-07-15T00:00:00Z", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10255, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10255, - "CustomerID": "RICSU", - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00Z", - "RequiredDate": "1996-08-09T00:00:00Z", - "ShippedDate": "1996-07-15T00:00:00Z", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10255, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10419, - "CustomerID": "RICSU", - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00Z", - "RequiredDate": "1997-02-17T00:00:00Z", - "ShippedDate": "1997-01-30T00:00:00Z", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10419, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10419, - "CustomerID": "RICSU", - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00Z", - "RequiredDate": "1997-02-17T00:00:00Z", - "ShippedDate": "1997-01-30T00:00:00Z", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10419, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10537, - "CustomerID": "RICSU", - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-19T00:00:00Z", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10537, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10537, - "CustomerID": "RICSU", - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-19T00:00:00Z", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10537, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10537, - "CustomerID": "RICSU", - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-19T00:00:00Z", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10537, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10537, - "CustomerID": "RICSU", - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-19T00:00:00Z", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10537, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10537, - "CustomerID": "RICSU", - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00Z", - "RequiredDate": "1997-05-28T00:00:00Z", - "ShippedDate": "1997-05-19T00:00:00Z", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10537, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10666, - "CustomerID": "RICSU", - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00Z", - "RequiredDate": "1997-10-10T00:00:00Z", - "ShippedDate": "1997-09-22T00:00:00Z", - "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10666, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10666, - "CustomerID": "RICSU", - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00Z", - "RequiredDate": "1997-10-10T00:00:00Z", - "ShippedDate": "1997-09-22T00:00:00Z", - "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10666, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10751, - "CustomerID": "RICSU", - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00Z", - "RequiredDate": "1997-12-22T00:00:00Z", - "ShippedDate": "1997-12-03T00:00:00Z", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10751, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0.1, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10751, - "CustomerID": "RICSU", - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00Z", - "RequiredDate": "1997-12-22T00:00:00Z", - "ShippedDate": "1997-12-03T00:00:00Z", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10751, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10751, - "CustomerID": "RICSU", - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00Z", - "RequiredDate": "1997-12-22T00:00:00Z", - "ShippedDate": "1997-12-03T00:00:00Z", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10751, - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10751, - "CustomerID": "RICSU", - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00Z", - "RequiredDate": "1997-12-22T00:00:00Z", - "ShippedDate": "1997-12-03T00:00:00Z", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10751, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10758, - "CustomerID": "RICSU", - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00Z", - "RequiredDate": "1997-12-26T00:00:00Z", - "ShippedDate": "1997-12-04T00:00:00Z", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10758, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10758, - "CustomerID": "RICSU", - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00Z", - "RequiredDate": "1997-12-26T00:00:00Z", - "ShippedDate": "1997-12-04T00:00:00Z", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10758, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10758, - "CustomerID": "RICSU", - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00Z", - "RequiredDate": "1997-12-26T00:00:00Z", - "ShippedDate": "1997-12-04T00:00:00Z", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10758, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10931, - "CustomerID": "RICSU", - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-03-20T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10931, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, - "Discount": 0.15, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10931, - "CustomerID": "RICSU", - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-03-20T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10931, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10951, - "CustomerID": "RICSU", - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10951, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10951, - "CustomerID": "RICSU", - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10951, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.05, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10951, - "CustomerID": "RICSU", - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-07T00:00:00Z", - "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10951, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11033, - "CustomerID": "RICSU", - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11033, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11033, - "CustomerID": "RICSU", - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11033, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11075, - "CustomerID": "RICSU", - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11075, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.15, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11075, - "CustomerID": "RICSU", - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11075, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11075, - "CustomerID": "RICSU", - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipRegion": null, - "ShipPostalCode": "1204", - "ShipCountry": "Switzerland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11075, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.15, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "ROMEY", - "CompanyName": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "Region": null, - "PostalCode": "28001", - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10281, - "CustomerID": "ROMEY", - "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00Z", - "RequiredDate": "1996-08-28T00:00:00Z", - "ShippedDate": "1996-08-21T00:00:00Z", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10281, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10281, - "CustomerID": "ROMEY", - "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00Z", - "RequiredDate": "1996-08-28T00:00:00Z", - "ShippedDate": "1996-08-21T00:00:00Z", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10281, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10281, - "CustomerID": "ROMEY", - "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00Z", - "RequiredDate": "1996-08-28T00:00:00Z", - "ShippedDate": "1996-08-21T00:00:00Z", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10281, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10282, - "CustomerID": "ROMEY", - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00Z", - "RequiredDate": "1996-09-12T00:00:00Z", - "ShippedDate": "1996-08-21T00:00:00Z", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10282, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10282, - "CustomerID": "ROMEY", - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00Z", - "RequiredDate": "1996-09-12T00:00:00Z", - "ShippedDate": "1996-08-21T00:00:00Z", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10282, - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10306, - "CustomerID": "ROMEY", - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00Z", - "RequiredDate": "1996-10-14T00:00:00Z", - "ShippedDate": "1996-09-23T00:00:00Z", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10306, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10306, - "CustomerID": "ROMEY", - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00Z", - "RequiredDate": "1996-10-14T00:00:00Z", - "ShippedDate": "1996-09-23T00:00:00Z", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10306, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10306, - "CustomerID": "ROMEY", - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00Z", - "RequiredDate": "1996-10-14T00:00:00Z", - "ShippedDate": "1996-09-23T00:00:00Z", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10306, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10917, - "CustomerID": "ROMEY", - "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-11T00:00:00Z", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10917, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10917, - "CustomerID": "ROMEY", - "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00Z", - "RequiredDate": "1998-03-30T00:00:00Z", - "ShippedDate": "1998-03-11T00:00:00Z", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10917, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11013, - "CustomerID": "ROMEY", - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-05-07T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11013, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11013, - "CustomerID": "ROMEY", - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-05-07T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11013, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11013, - "CustomerID": "ROMEY", - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-05-07T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11013, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11013, - "CustomerID": "ROMEY", - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00Z", - "RequiredDate": "1998-05-07T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipRegion": null, - "ShipPostalCode": "28001", - "ShipCountry": "Spain", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11013, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "SANTG", - "CompanyName": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "Region": null, - "PostalCode": "4110", - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10387, - "CustomerID": "SANTG", - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00Z", - "RequiredDate": "1997-01-15T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10387, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10387, - "CustomerID": "SANTG", - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00Z", - "RequiredDate": "1997-01-15T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10387, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10387, - "CustomerID": "SANTG", - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00Z", - "RequiredDate": "1997-01-15T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10387, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10387, - "CustomerID": "SANTG", - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00Z", - "RequiredDate": "1997-01-15T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10387, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10520, - "CustomerID": "SANTG", - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00Z", - "RequiredDate": "1997-05-27T00:00:00Z", - "ShippedDate": "1997-05-01T00:00:00Z", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10520, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10520, - "CustomerID": "SANTG", - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00Z", - "RequiredDate": "1997-05-27T00:00:00Z", - "ShippedDate": "1997-05-01T00:00:00Z", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10520, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10639, - "CustomerID": "SANTG", - "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00Z", - "RequiredDate": "1997-09-17T00:00:00Z", - "ShippedDate": "1997-08-27T00:00:00Z", - "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10639, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10831, - "CustomerID": "SANTG", - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00Z", - "RequiredDate": "1998-02-11T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10831, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10831, - "CustomerID": "SANTG", - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00Z", - "RequiredDate": "1998-02-11T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10831, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10831, - "CustomerID": "SANTG", - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00Z", - "RequiredDate": "1998-02-11T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10831, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10831, - "CustomerID": "SANTG", - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00Z", - "RequiredDate": "1998-02-11T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10831, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10909, - "CustomerID": "SANTG", - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-10T00:00:00Z", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10909, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10909, - "CustomerID": "SANTG", - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-10T00:00:00Z", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10909, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10909, - "CustomerID": "SANTG", - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-10T00:00:00Z", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10909, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11015, - "CustomerID": "SANTG", - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00Z", - "RequiredDate": "1998-04-24T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11015, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11015, - "CustomerID": "SANTG", - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00Z", - "RequiredDate": "1998-04-24T00:00:00Z", - "ShippedDate": "1998-04-20T00:00:00Z", - "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipRegion": null, - "ShipPostalCode": "4110", - "ShipCountry": "Norway", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11015, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "SAVEA", - "CompanyName": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": "83720", - "Country": "USA", - "Phone": "(208) 555-8097", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10324, - "CustomerID": "SAVEA", - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00Z", - "RequiredDate": "1996-11-05T00:00:00Z", - "ShippedDate": "1996-10-10T00:00:00Z", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10324, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.15, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10324, - "CustomerID": "SAVEA", - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00Z", - "RequiredDate": "1996-11-05T00:00:00Z", - "ShippedDate": "1996-10-10T00:00:00Z", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10324, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.15, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10324, - "CustomerID": "SAVEA", - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00Z", - "RequiredDate": "1996-11-05T00:00:00Z", - "ShippedDate": "1996-10-10T00:00:00Z", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10324, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10324, - "CustomerID": "SAVEA", - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00Z", - "RequiredDate": "1996-11-05T00:00:00Z", - "ShippedDate": "1996-10-10T00:00:00Z", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10324, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10324, - "CustomerID": "SAVEA", - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00Z", - "RequiredDate": "1996-11-05T00:00:00Z", - "ShippedDate": "1996-10-10T00:00:00Z", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10324, - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.15, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10393, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00Z", - "RequiredDate": "1997-01-22T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10393, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.25, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10393, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00Z", - "RequiredDate": "1997-01-22T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10393, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10393, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00Z", - "RequiredDate": "1997-01-22T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10393, - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10393, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00Z", - "RequiredDate": "1997-01-22T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10393, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, - "Discount": 0.25, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10393, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00Z", - "RequiredDate": "1997-01-22T00:00:00Z", - "ShippedDate": "1997-01-03T00:00:00Z", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10393, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10398, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00Z", - "RequiredDate": "1997-01-27T00:00:00Z", - "ShippedDate": "1997-01-09T00:00:00Z", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10398, - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10398, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00Z", - "RequiredDate": "1997-01-27T00:00:00Z", - "ShippedDate": "1997-01-09T00:00:00Z", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10398, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10440, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00Z", - "RequiredDate": "1997-03-10T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10440, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.15, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10440, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00Z", - "RequiredDate": "1997-03-10T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10440, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.15, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10440, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00Z", - "RequiredDate": "1997-03-10T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10440, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.15, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10440, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00Z", - "RequiredDate": "1997-03-10T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10440, - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.15, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10452, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00Z", - "RequiredDate": "1997-03-20T00:00:00Z", - "ShippedDate": "1997-02-26T00:00:00Z", - "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10452, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10452, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00Z", - "RequiredDate": "1997-03-20T00:00:00Z", - "ShippedDate": "1997-02-26T00:00:00Z", - "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10452, - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, - "Discount": 0.05, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10510, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00Z", - "RequiredDate": "1997-05-16T00:00:00Z", - "ShippedDate": "1997-04-28T00:00:00Z", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10510, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10510, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00Z", - "RequiredDate": "1997-05-16T00:00:00Z", - "ShippedDate": "1997-04-28T00:00:00Z", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10510, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10555, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00Z", - "RequiredDate": "1997-06-30T00:00:00Z", - "ShippedDate": "1997-06-04T00:00:00Z", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10555, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10555, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00Z", - "RequiredDate": "1997-06-30T00:00:00Z", - "ShippedDate": "1997-06-04T00:00:00Z", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10555, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0.2, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10555, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00Z", - "RequiredDate": "1997-06-30T00:00:00Z", - "ShippedDate": "1997-06-04T00:00:00Z", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10555, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, - "Discount": 0.2, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10555, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00Z", - "RequiredDate": "1997-06-30T00:00:00Z", - "ShippedDate": "1997-06-04T00:00:00Z", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10555, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10555, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00Z", - "RequiredDate": "1997-06-30T00:00:00Z", - "ShippedDate": "1997-06-04T00:00:00Z", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10555, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10603, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00Z", - "RequiredDate": "1997-08-15T00:00:00Z", - "ShippedDate": "1997-08-08T00:00:00Z", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10603, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10603, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00Z", - "RequiredDate": "1997-08-15T00:00:00Z", - "ShippedDate": "1997-08-08T00:00:00Z", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10603, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0.05, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10607, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00Z", - "RequiredDate": "1997-08-19T00:00:00Z", - "ShippedDate": "1997-07-25T00:00:00Z", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10607, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10607, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00Z", - "RequiredDate": "1997-08-19T00:00:00Z", - "ShippedDate": "1997-07-25T00:00:00Z", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10607, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10607, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00Z", - "RequiredDate": "1997-08-19T00:00:00Z", - "ShippedDate": "1997-07-25T00:00:00Z", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10607, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10607, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00Z", - "RequiredDate": "1997-08-19T00:00:00Z", - "ShippedDate": "1997-07-25T00:00:00Z", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10607, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10607, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00Z", - "RequiredDate": "1997-08-19T00:00:00Z", - "ShippedDate": "1997-07-25T00:00:00Z", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10607, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10612, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00Z", - "RequiredDate": "1997-08-25T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10612, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10612, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00Z", - "RequiredDate": "1997-08-25T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10612, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10612, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00Z", - "RequiredDate": "1997-08-25T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10612, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10612, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00Z", - "RequiredDate": "1997-08-25T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10612, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10612, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00Z", - "RequiredDate": "1997-08-25T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10612, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10627, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00Z", - "RequiredDate": "1997-09-22T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10627, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10627, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00Z", - "RequiredDate": "1997-09-22T00:00:00Z", - "ShippedDate": "1997-08-21T00:00:00Z", - "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10627, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.15, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10657, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-15T00:00:00Z", - "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10657, - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 15, - "ProductName": "Genen Shouyu", - "SupplierID": 6, - "CategoryID": 2, - "QuantityPerUnit": "24 - 250 ml bottles", - "UnitPrice": 13, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10657, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-15T00:00:00Z", - "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10657, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10657, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-15T00:00:00Z", - "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10657, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10657, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-15T00:00:00Z", - "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10657, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10657, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-15T00:00:00Z", - "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10657, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10657, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00Z", - "RequiredDate": "1997-10-02T00:00:00Z", - "ShippedDate": "1997-09-15T00:00:00Z", - "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10657, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10678, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00Z", - "RequiredDate": "1997-10-21T00:00:00Z", - "ShippedDate": "1997-10-16T00:00:00Z", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10678, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, - "Discount": 0, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10678, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00Z", - "RequiredDate": "1997-10-21T00:00:00Z", - "ShippedDate": "1997-10-16T00:00:00Z", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10678, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10678, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00Z", - "RequiredDate": "1997-10-21T00:00:00Z", - "ShippedDate": "1997-10-16T00:00:00Z", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10678, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 120, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10678, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00Z", - "RequiredDate": "1997-10-21T00:00:00Z", - "ShippedDate": "1997-10-16T00:00:00Z", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10678, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10700, - "CustomerID": "SAVEA", - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00Z", - "RequiredDate": "1997-11-07T00:00:00Z", - "ShippedDate": "1997-10-16T00:00:00Z", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10700, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0.2, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10700, - "CustomerID": "SAVEA", - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00Z", - "RequiredDate": "1997-11-07T00:00:00Z", - "ShippedDate": "1997-10-16T00:00:00Z", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10700, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.2, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10700, - "CustomerID": "SAVEA", - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00Z", - "RequiredDate": "1997-11-07T00:00:00Z", - "ShippedDate": "1997-10-16T00:00:00Z", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10700, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10700, - "CustomerID": "SAVEA", - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00Z", - "RequiredDate": "1997-11-07T00:00:00Z", - "ShippedDate": "1997-10-16T00:00:00Z", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10700, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.2, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10711, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00Z", - "RequiredDate": "1997-12-02T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 2, - "Freight": 52.41, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10711, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10711, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00Z", - "RequiredDate": "1997-12-02T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 2, - "Freight": 52.41, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10711, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10711, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00Z", - "RequiredDate": "1997-12-02T00:00:00Z", - "ShippedDate": "1997-10-29T00:00:00Z", - "ShipVia": 2, - "Freight": 52.41, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10711, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 120, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10713, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-24T00:00:00Z", - "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10713, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10713, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-24T00:00:00Z", - "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10713, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10713, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-24T00:00:00Z", - "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10713, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, - "Discount": 0, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10713, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-24T00:00:00Z", - "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10713, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10714, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-27T00:00:00Z", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10714, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10714, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-27T00:00:00Z", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10714, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10714, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-27T00:00:00Z", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10714, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10714, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-27T00:00:00Z", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10714, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10714, - "CustomerID": "SAVEA", - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-27T00:00:00Z", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10714, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10722, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00Z", - "RequiredDate": "1997-12-10T00:00:00Z", - "ShippedDate": "1997-11-04T00:00:00Z", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10722, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10722, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00Z", - "RequiredDate": "1997-12-10T00:00:00Z", - "ShippedDate": "1997-11-04T00:00:00Z", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10722, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10722, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00Z", - "RequiredDate": "1997-12-10T00:00:00Z", - "ShippedDate": "1997-11-04T00:00:00Z", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10722, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10722, - "CustomerID": "SAVEA", - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00Z", - "RequiredDate": "1997-12-10T00:00:00Z", - "ShippedDate": "1997-11-04T00:00:00Z", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10722, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10748, - "CustomerID": "SAVEA", - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00Z", - "RequiredDate": "1997-12-18T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10748, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10748, - "CustomerID": "SAVEA", - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00Z", - "RequiredDate": "1997-12-18T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10748, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10748, - "CustomerID": "SAVEA", - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00Z", - "RequiredDate": "1997-12-18T00:00:00Z", - "ShippedDate": "1997-11-28T00:00:00Z", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10748, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10757, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10757, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10757, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10757, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10757, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10757, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10757, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10757, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10815, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00Z", - "RequiredDate": "1998-02-02T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 3, - "Freight": 14.62, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10815, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10847, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10847, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10847, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10847, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10847, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10847, - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2, - "Products": [ - { - "ProductID": 37, - "ProductName": "Gravad lax", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "12 - 500 g pkgs.", - "UnitPrice": 26, - "UnitsInStock": 11, - "UnitsOnOrder": 50, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10847, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10847, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10847, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10847, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10847, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-02-10T00:00:00Z", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10847, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10882, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00Z", - "RequiredDate": "1998-03-11T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10882, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10882, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00Z", - "RequiredDate": "1998-03-11T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10882, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10882, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00Z", - "RequiredDate": "1998-03-11T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10882, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.15, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10894, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10894, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.05, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10894, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10894, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.05, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10894, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00Z", - "RequiredDate": "1998-03-18T00:00:00Z", - "ShippedDate": "1998-02-20T00:00:00Z", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10894, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.05, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10941, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10941, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10941, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10941, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10941, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10941, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10941, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-03-20T00:00:00Z", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10941, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10983, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00Z", - "RequiredDate": "1998-04-24T00:00:00Z", - "ShippedDate": "1998-04-06T00:00:00Z", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10983, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.15, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10983, - "CustomerID": "SAVEA", - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00Z", - "RequiredDate": "1998-04-24T00:00:00Z", - "ShippedDate": "1998-04-06T00:00:00Z", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10983, - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10984, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-03T00:00:00Z", - "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10984, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10984, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-03T00:00:00Z", - "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10984, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10984, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00Z", - "RequiredDate": "1998-04-27T00:00:00Z", - "ShippedDate": "1998-04-03T00:00:00Z", - "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10984, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11002, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-16T00:00:00Z", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11002, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 56, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 11002, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-16T00:00:00Z", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11002, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11002, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-16T00:00:00Z", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11002, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.15, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11002, - "CustomerID": "SAVEA", - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-16T00:00:00Z", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11002, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11030, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11030, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11030, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11030, - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, - "Discount": 0, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 11030, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11030, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11030, - "CustomerID": "SAVEA", - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-27T00:00:00Z", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11030, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11031, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11031, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11031, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11031, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 11031, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11031, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11031, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11031, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11031, - "CustomerID": "SAVEA", - "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11031, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11064, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11064, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11064, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11064, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11064, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11064, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11064, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11064, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11064, - "CustomerID": "SAVEA", - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": "83720", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11064, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "SEVES", - "CompanyName": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "Region": null, - "PostalCode": "OX15 4NB", - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10359, - "CustomerID": "SEVES", - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00Z", - "RequiredDate": "1996-12-19T00:00:00Z", - "ShippedDate": "1996-11-26T00:00:00Z", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10359, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.05, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10359, - "CustomerID": "SEVES", - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00Z", - "RequiredDate": "1996-12-19T00:00:00Z", - "ShippedDate": "1996-11-26T00:00:00Z", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10359, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10359, - "CustomerID": "SEVES", - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00Z", - "RequiredDate": "1996-12-19T00:00:00Z", - "ShippedDate": "1996-11-26T00:00:00Z", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10359, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.05, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10377, - "CustomerID": "SEVES", - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00Z", - "RequiredDate": "1997-01-06T00:00:00Z", - "ShippedDate": "1996-12-13T00:00:00Z", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10377, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10377, - "CustomerID": "SEVES", - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00Z", - "RequiredDate": "1997-01-06T00:00:00Z", - "ShippedDate": "1996-12-13T00:00:00Z", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10377, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10388, - "CustomerID": "SEVES", - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00Z", - "RequiredDate": "1997-01-16T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10388, - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10388, - "CustomerID": "SEVES", - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00Z", - "RequiredDate": "1997-01-16T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10388, - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10388, - "CustomerID": "SEVES", - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00Z", - "RequiredDate": "1997-01-16T00:00:00Z", - "ShippedDate": "1996-12-20T00:00:00Z", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10388, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10472, - "CustomerID": "SEVES", - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00Z", - "RequiredDate": "1997-04-09T00:00:00Z", - "ShippedDate": "1997-03-19T00:00:00Z", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10472, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, - "Discount": 0.05, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10472, - "CustomerID": "SEVES", - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00Z", - "RequiredDate": "1997-04-09T00:00:00Z", - "ShippedDate": "1997-03-19T00:00:00Z", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10472, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10523, - "CustomerID": "SEVES", - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00Z", - "RequiredDate": "1997-05-29T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10523, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10523, - "CustomerID": "SEVES", - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00Z", - "RequiredDate": "1997-05-29T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10523, - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10523, - "CustomerID": "SEVES", - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00Z", - "RequiredDate": "1997-05-29T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10523, - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1, - "Products": [ - { - "ProductID": 37, - "ProductName": "Gravad lax", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "12 - 500 g pkgs.", - "UnitPrice": 26, - "UnitsInStock": 11, - "UnitsOnOrder": 50, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10523, - "CustomerID": "SEVES", - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00Z", - "RequiredDate": "1997-05-29T00:00:00Z", - "ShippedDate": "1997-05-30T00:00:00Z", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10523, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10547, - "CustomerID": "SEVES", - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00Z", - "RequiredDate": "1997-06-20T00:00:00Z", - "ShippedDate": "1997-06-02T00:00:00Z", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10547, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.15, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10547, - "CustomerID": "SEVES", - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00Z", - "RequiredDate": "1997-06-20T00:00:00Z", - "ShippedDate": "1997-06-02T00:00:00Z", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10547, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10800, - "CustomerID": "SEVES", - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00Z", - "RequiredDate": "1998-01-23T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10800, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10800, - "CustomerID": "SEVES", - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00Z", - "RequiredDate": "1998-01-23T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10800, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10800, - "CustomerID": "SEVES", - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00Z", - "RequiredDate": "1998-01-23T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10800, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10804, - "CustomerID": "SEVES", - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-01-07T00:00:00Z", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10804, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10804, - "CustomerID": "SEVES", - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-01-07T00:00:00Z", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10804, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10804, - "CustomerID": "SEVES", - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-01-07T00:00:00Z", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10804, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.15, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10869, - "CustomerID": "SEVES", - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10869, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10869, - "CustomerID": "SEVES", - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10869, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10869, - "CustomerID": "SEVES", - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10869, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10869, - "CustomerID": "SEVES", - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipRegion": null, - "ShipPostalCode": "OX15 4NB", - "ShipCountry": "UK", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10869, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "SIMOB", - "CompanyName": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "Region": null, - "PostalCode": "1734", - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10341, - "CustomerID": "SIMOB", - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-11-05T00:00:00Z", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10341, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10341, - "CustomerID": "SIMOB", - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-11-05T00:00:00Z", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10341, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.15, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10417, - "CustomerID": "SIMOB", - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-28T00:00:00Z", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10417, - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10417, - "CustomerID": "SIMOB", - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-28T00:00:00Z", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10417, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10417, - "CustomerID": "SIMOB", - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-28T00:00:00Z", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10417, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10417, - "CustomerID": "SIMOB", - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-28T00:00:00Z", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10417, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10556, - "CustomerID": "SIMOB", - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00Z", - "RequiredDate": "1997-07-15T00:00:00Z", - "ShippedDate": "1997-06-13T00:00:00Z", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10556, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10642, - "CustomerID": "SIMOB", - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00Z", - "RequiredDate": "1997-09-19T00:00:00Z", - "ShippedDate": "1997-09-05T00:00:00Z", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10642, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10642, - "CustomerID": "SIMOB", - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00Z", - "RequiredDate": "1997-09-19T00:00:00Z", - "ShippedDate": "1997-09-05T00:00:00Z", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10642, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10669, - "CustomerID": "SIMOB", - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00Z", - "RequiredDate": "1997-10-13T00:00:00Z", - "ShippedDate": "1997-09-22T00:00:00Z", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10669, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10802, - "CustomerID": "SIMOB", - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00Z", - "RequiredDate": "1998-01-26T00:00:00Z", - "ShippedDate": "1998-01-02T00:00:00Z", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10802, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10802, - "CustomerID": "SIMOB", - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00Z", - "RequiredDate": "1998-01-26T00:00:00Z", - "ShippedDate": "1998-01-02T00:00:00Z", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10802, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.25, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10802, - "CustomerID": "SIMOB", - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00Z", - "RequiredDate": "1998-01-26T00:00:00Z", - "ShippedDate": "1998-01-02T00:00:00Z", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10802, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 60, - "Discount": 0.25, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10802, - "CustomerID": "SIMOB", - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00Z", - "RequiredDate": "1998-01-26T00:00:00Z", - "ShippedDate": "1998-01-02T00:00:00Z", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10802, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11074, - "CustomerID": "SIMOB", - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00Z", - "RequiredDate": "1998-06-03T00:00:00Z", - "ShippedDate": null, - "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipRegion": null, - "ShipPostalCode": "1734", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11074, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0.05, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "SPECD", - "CompanyName": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "Region": null, - "PostalCode": "75016", - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10738, - "CustomerID": "SPECD", - "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00Z", - "RequiredDate": "1997-12-10T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipRegion": null, - "ShipPostalCode": "75016", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10738, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10907, - "CustomerID": "SPECD", - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00Z", - "RequiredDate": "1998-03-25T00:00:00Z", - "ShippedDate": "1998-02-27T00:00:00Z", - "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipRegion": null, - "ShipPostalCode": "75016", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10907, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10964, - "CustomerID": "SPECD", - "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipRegion": null, - "ShipPostalCode": "75016", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10964, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10964, - "CustomerID": "SPECD", - "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipRegion": null, - "ShipPostalCode": "75016", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10964, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10964, - "CustomerID": "SPECD", - "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-03-24T00:00:00Z", - "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipRegion": null, - "ShipPostalCode": "75016", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10964, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11043, - "CustomerID": "SPECD", - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00Z", - "RequiredDate": "1998-05-20T00:00:00Z", - "ShippedDate": "1998-04-29T00:00:00Z", - "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipRegion": null, - "ShipPostalCode": "75016", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11043, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "SPLIR", - "CompanyName": "Split Rail Beer \u0026 Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": "82520", - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10271, - "CustomerID": "SPLIR", - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00Z", - "RequiredDate": "1996-08-29T00:00:00Z", - "ShippedDate": "1996-08-30T00:00:00Z", - "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10271, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10329, - "CustomerID": "SPLIR", - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10329, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, - "Discount": 0.05, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10329, - "CustomerID": "SPLIR", - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10329, - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.05, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10329, - "CustomerID": "SPLIR", - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10329, - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10329, - "CustomerID": "SPLIR", - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00Z", - "RequiredDate": "1996-11-26T00:00:00Z", - "ShippedDate": "1996-10-23T00:00:00Z", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10329, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10349, - "CustomerID": "SPLIR", - "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00Z", - "RequiredDate": "1996-12-06T00:00:00Z", - "ShippedDate": "1996-11-15T00:00:00Z", - "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10349, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10369, - "CustomerID": "SPLIR", - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00Z", - "RequiredDate": "1996-12-30T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10369, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10369, - "CustomerID": "SPLIR", - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00Z", - "RequiredDate": "1996-12-30T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10369, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10385, - "CustomerID": "SPLIR", - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00Z", - "RequiredDate": "1997-01-14T00:00:00Z", - "ShippedDate": "1996-12-23T00:00:00Z", - "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10385, - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10385, - "CustomerID": "SPLIR", - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00Z", - "RequiredDate": "1997-01-14T00:00:00Z", - "ShippedDate": "1996-12-23T00:00:00Z", - "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10385, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10385, - "CustomerID": "SPLIR", - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00Z", - "RequiredDate": "1997-01-14T00:00:00Z", - "ShippedDate": "1996-12-23T00:00:00Z", - "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10385, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0.2, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10432, - "CustomerID": "SPLIR", - "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00Z", - "RequiredDate": "1997-02-14T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10432, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10432, - "CustomerID": "SPLIR", - "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00Z", - "RequiredDate": "1997-02-14T00:00:00Z", - "ShippedDate": "1997-02-07T00:00:00Z", - "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10432, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10756, - "CustomerID": "SPLIR", - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10756, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10756, - "CustomerID": "SPLIR", - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10756, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10756, - "CustomerID": "SPLIR", - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10756, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10756, - "CustomerID": "SPLIR", - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00Z", - "RequiredDate": "1997-12-25T00:00:00Z", - "ShippedDate": "1997-12-02T00:00:00Z", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10756, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10821, - "CustomerID": "SPLIR", - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-01-15T00:00:00Z", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10821, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10821, - "CustomerID": "SPLIR", - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-01-15T00:00:00Z", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10821, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10974, - "CustomerID": "SPLIR", - "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00Z", - "RequiredDate": "1998-04-08T00:00:00Z", - "ShippedDate": "1998-04-03T00:00:00Z", - "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer \u0026 Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": "82520", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10974, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "SUPRD", - "CompanyName": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "Region": null, - "PostalCode": "B-6000", - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10252, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00Z", - "RequiredDate": "1996-08-06T00:00:00Z", - "ShippedDate": "1996-07-11T00:00:00Z", - "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10252, - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.05, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10252, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00Z", - "RequiredDate": "1996-08-06T00:00:00Z", - "ShippedDate": "1996-07-11T00:00:00Z", - "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10252, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.05, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10252, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00Z", - "RequiredDate": "1996-08-06T00:00:00Z", - "ShippedDate": "1996-07-11T00:00:00Z", - "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10252, - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10302, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00Z", - "RequiredDate": "1996-10-08T00:00:00Z", - "ShippedDate": "1996-10-09T00:00:00Z", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10302, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10302, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00Z", - "RequiredDate": "1996-10-08T00:00:00Z", - "ShippedDate": "1996-10-09T00:00:00Z", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10302, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10302, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00Z", - "RequiredDate": "1996-10-08T00:00:00Z", - "ShippedDate": "1996-10-09T00:00:00Z", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10302, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10458, - "CustomerID": "SUPRD", - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00Z", - "RequiredDate": "1997-03-26T00:00:00Z", - "ShippedDate": "1997-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10458, - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10458, - "CustomerID": "SUPRD", - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00Z", - "RequiredDate": "1997-03-26T00:00:00Z", - "ShippedDate": "1997-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10458, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10458, - "CustomerID": "SUPRD", - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00Z", - "RequiredDate": "1997-03-26T00:00:00Z", - "ShippedDate": "1997-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10458, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10458, - "CustomerID": "SUPRD", - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00Z", - "RequiredDate": "1997-03-26T00:00:00Z", - "ShippedDate": "1997-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10458, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10458, - "CustomerID": "SUPRD", - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00Z", - "RequiredDate": "1997-03-26T00:00:00Z", - "ShippedDate": "1997-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10458, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10463, - "CustomerID": "SUPRD", - "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00Z", - "RequiredDate": "1997-04-01T00:00:00Z", - "ShippedDate": "1997-03-06T00:00:00Z", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10463, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10463, - "CustomerID": "SUPRD", - "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00Z", - "RequiredDate": "1997-04-01T00:00:00Z", - "ShippedDate": "1997-03-06T00:00:00Z", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10463, - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10475, - "CustomerID": "SUPRD", - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00Z", - "RequiredDate": "1997-04-11T00:00:00Z", - "ShippedDate": "1997-04-04T00:00:00Z", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10475, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.15, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10475, - "CustomerID": "SUPRD", - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00Z", - "RequiredDate": "1997-04-11T00:00:00Z", - "ShippedDate": "1997-04-04T00:00:00Z", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10475, - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0.15, - "Products": [ - { - "ProductID": 66, - "ProductName": "Louisiana Hot Spiced Okra", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "24 - 8 oz jars", - "UnitPrice": 17, - "UnitsInStock": 4, - "UnitsOnOrder": 100, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10475, - "CustomerID": "SUPRD", - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00Z", - "RequiredDate": "1997-04-11T00:00:00Z", - "ShippedDate": "1997-04-04T00:00:00Z", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10475, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, - "Discount": 0.15, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10767, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00Z", - "RequiredDate": "1998-01-02T00:00:00Z", - "ShippedDate": "1997-12-15T00:00:00Z", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10767, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10841, - "CustomerID": "SUPRD", - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00Z", - "RequiredDate": "1998-02-17T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10841, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10841, - "CustomerID": "SUPRD", - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00Z", - "RequiredDate": "1998-02-17T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10841, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10841, - "CustomerID": "SUPRD", - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00Z", - "RequiredDate": "1998-02-17T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10841, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10841, - "CustomerID": "SUPRD", - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00Z", - "RequiredDate": "1998-02-17T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10841, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10846, - "CustomerID": "SUPRD", - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10846, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10846, - "CustomerID": "SUPRD", - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10846, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10846, - "CustomerID": "SUPRD", - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00Z", - "RequiredDate": "1998-03-05T00:00:00Z", - "ShippedDate": "1998-01-23T00:00:00Z", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10846, - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10885, - "CustomerID": "SUPRD", - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00Z", - "RequiredDate": "1998-03-12T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10885, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10885, - "CustomerID": "SUPRD", - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00Z", - "RequiredDate": "1998-03-12T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10885, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10885, - "CustomerID": "SUPRD", - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00Z", - "RequiredDate": "1998-03-12T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10885, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10885, - "CustomerID": "SUPRD", - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00Z", - "RequiredDate": "1998-03-12T00:00:00Z", - "ShippedDate": "1998-02-18T00:00:00Z", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10885, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10930, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10930, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10930, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10930, - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 27, - "ProductName": "Schoggi Schokolade", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 100 g pieces", - "UnitPrice": 43.9, - "UnitsInStock": 49, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10930, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10930, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.2, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10930, - "CustomerID": "SUPRD", - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10930, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11035, - "CustomerID": "SUPRD", - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-05-18T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11035, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11035, - "CustomerID": "SUPRD", - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-05-18T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11035, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11035, - "CustomerID": "SUPRD", - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-05-18T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11035, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11035, - "CustomerID": "SUPRD", - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00Z", - "RequiredDate": "1998-05-18T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11035, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11038, - "CustomerID": "SUPRD", - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00Z", - "RequiredDate": "1998-05-19T00:00:00Z", - "ShippedDate": "1998-04-30T00:00:00Z", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11038, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11038, - "CustomerID": "SUPRD", - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00Z", - "RequiredDate": "1998-05-19T00:00:00Z", - "ShippedDate": "1998-04-30T00:00:00Z", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11038, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 11038, - "CustomerID": "SUPRD", - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00Z", - "RequiredDate": "1998-05-19T00:00:00Z", - "ShippedDate": "1998-04-30T00:00:00Z", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipRegion": null, - "ShipPostalCode": "B-6000", - "ShipCountry": "Belgium", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11038, - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "THEBI", - "CompanyName": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": "97201", - "Country": "USA", - "Phone": "(503) 555-3612", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10310, - "CustomerID": "THEBI", - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00Z", - "RequiredDate": "1996-10-18T00:00:00Z", - "ShippedDate": "1996-09-27T00:00:00Z", - "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97201", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10310, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10310, - "CustomerID": "THEBI", - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00Z", - "RequiredDate": "1996-10-18T00:00:00Z", - "ShippedDate": "1996-09-27T00:00:00Z", - "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97201", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10310, - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10708, - "CustomerID": "THEBI", - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00Z", - "RequiredDate": "1997-11-28T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97201", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10708, - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 5, - "ProductName": "Chef Anton's Gumbo Mix", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "36 boxes", - "UnitPrice": 21.35, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10708, - "CustomerID": "THEBI", - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00Z", - "RequiredDate": "1997-11-28T00:00:00Z", - "ShippedDate": "1997-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97201", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10708, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10805, - "CustomerID": "THEBI", - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-01-09T00:00:00Z", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97201", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10805, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10805, - "CustomerID": "THEBI", - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-01-09T00:00:00Z", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97201", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10805, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10992, - "CustomerID": "THEBI", - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00Z", - "RequiredDate": "1998-04-29T00:00:00Z", - "ShippedDate": "1998-04-03T00:00:00Z", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": "97201", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10992, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "THECR", - "CompanyName": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": "59801", - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10624, - "CustomerID": "THECR", - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00Z", - "RequiredDate": "1997-09-04T00:00:00Z", - "ShippedDate": "1997-08-19T00:00:00Z", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": "59801", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10624, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10624, - "CustomerID": "THECR", - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00Z", - "RequiredDate": "1997-09-04T00:00:00Z", - "ShippedDate": "1997-08-19T00:00:00Z", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": "59801", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10624, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10624, - "CustomerID": "THECR", - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00Z", - "RequiredDate": "1997-09-04T00:00:00Z", - "ShippedDate": "1997-08-19T00:00:00Z", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": "59801", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10624, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10775, - "CustomerID": "THECR", - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00Z", - "RequiredDate": "1998-01-09T00:00:00Z", - "ShippedDate": "1997-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": "59801", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10775, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10775, - "CustomerID": "THECR", - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00Z", - "RequiredDate": "1998-01-09T00:00:00Z", - "ShippedDate": "1997-12-26T00:00:00Z", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": "59801", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10775, - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 67, - "ProductName": "Laughing Lumberjack Lager", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 52, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11003, - "CustomerID": "THECR", - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": "59801", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11003, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11003, - "CustomerID": "THECR", - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": "59801", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11003, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11003, - "CustomerID": "THECR", - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00Z", - "RequiredDate": "1998-05-04T00:00:00Z", - "ShippedDate": "1998-04-08T00:00:00Z", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": "59801", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11003, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "TOMSP", - "CompanyName": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "Region": null, - "PostalCode": "44087", - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10249, - "CustomerID": "TOMSP", - "EmployeeID": 6, - "OrderDate": "1996-07-05T00:00:00Z", - "RequiredDate": "1996-08-16T00:00:00Z", - "ShippedDate": "1996-07-10T00:00:00Z", - "ShipVia": 1, - "Freight": 11.61, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10249, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10249, - "CustomerID": "TOMSP", - "EmployeeID": 6, - "OrderDate": "1996-07-05T00:00:00Z", - "RequiredDate": "1996-08-16T00:00:00Z", - "ShippedDate": "1996-07-10T00:00:00Z", - "ShipVia": 1, - "Freight": 11.61, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10249, - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10438, - "CustomerID": "TOMSP", - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00Z", - "RequiredDate": "1997-03-06T00:00:00Z", - "ShippedDate": "1997-02-14T00:00:00Z", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10438, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10438, - "CustomerID": "TOMSP", - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00Z", - "RequiredDate": "1997-03-06T00:00:00Z", - "ShippedDate": "1997-02-14T00:00:00Z", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10438, - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10438, - "CustomerID": "TOMSP", - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00Z", - "RequiredDate": "1997-03-06T00:00:00Z", - "ShippedDate": "1997-02-14T00:00:00Z", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10438, - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.2, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10446, - "CustomerID": "TOMSP", - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00Z", - "RequiredDate": "1997-03-14T00:00:00Z", - "ShippedDate": "1997-02-19T00:00:00Z", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10446, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10446, - "CustomerID": "TOMSP", - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00Z", - "RequiredDate": "1997-03-14T00:00:00Z", - "ShippedDate": "1997-02-19T00:00:00Z", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10446, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10446, - "CustomerID": "TOMSP", - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00Z", - "RequiredDate": "1997-03-14T00:00:00Z", - "ShippedDate": "1997-02-19T00:00:00Z", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10446, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10446, - "CustomerID": "TOMSP", - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00Z", - "RequiredDate": "1997-03-14T00:00:00Z", - "ShippedDate": "1997-02-19T00:00:00Z", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10446, - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10548, - "CustomerID": "TOMSP", - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00Z", - "RequiredDate": "1997-06-23T00:00:00Z", - "ShippedDate": "1997-06-02T00:00:00Z", - "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10548, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10548, - "CustomerID": "TOMSP", - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00Z", - "RequiredDate": "1997-06-23T00:00:00Z", - "ShippedDate": "1997-06-02T00:00:00Z", - "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10548, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10608, - "CustomerID": "TOMSP", - "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00Z", - "RequiredDate": "1997-08-20T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10608, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10967, - "CustomerID": "TOMSP", - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00Z", - "RequiredDate": "1998-04-20T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10967, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10967, - "CustomerID": "TOMSP", - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00Z", - "RequiredDate": "1998-04-20T00:00:00Z", - "ShippedDate": "1998-04-02T00:00:00Z", - "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipRegion": null, - "ShipPostalCode": "44087", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10967, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "TORTU", - "CompanyName": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "Region": null, - "PostalCode": "05033", - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10276, - "CustomerID": "TORTU", - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00Z", - "RequiredDate": "1996-08-22T00:00:00Z", - "ShippedDate": "1996-08-14T00:00:00Z", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10276, - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10276, - "CustomerID": "TORTU", - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00Z", - "RequiredDate": "1996-08-22T00:00:00Z", - "ShippedDate": "1996-08-14T00:00:00Z", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10276, - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10293, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00Z", - "RequiredDate": "1996-09-26T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10293, - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10293, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00Z", - "RequiredDate": "1996-09-26T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10293, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10293, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00Z", - "RequiredDate": "1996-09-26T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10293, - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10293, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00Z", - "RequiredDate": "1996-09-26T00:00:00Z", - "ShippedDate": "1996-09-11T00:00:00Z", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10293, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10304, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00Z", - "RequiredDate": "1996-10-10T00:00:00Z", - "ShippedDate": "1996-09-17T00:00:00Z", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10304, - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10304, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00Z", - "RequiredDate": "1996-10-10T00:00:00Z", - "ShippedDate": "1996-09-17T00:00:00Z", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10304, - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10304, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00Z", - "RequiredDate": "1996-10-10T00:00:00Z", - "ShippedDate": "1996-09-17T00:00:00Z", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10304, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10319, - "CustomerID": "TORTU", - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00Z", - "RequiredDate": "1996-10-30T00:00:00Z", - "ShippedDate": "1996-10-11T00:00:00Z", - "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10319, - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10319, - "CustomerID": "TORTU", - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00Z", - "RequiredDate": "1996-10-30T00:00:00Z", - "ShippedDate": "1996-10-11T00:00:00Z", - "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10319, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10319, - "CustomerID": "TORTU", - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00Z", - "RequiredDate": "1996-10-30T00:00:00Z", - "ShippedDate": "1996-10-11T00:00:00Z", - "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10319, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10518, - "CustomerID": "TORTU", - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-05-05T00:00:00Z", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10518, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10518, - "CustomerID": "TORTU", - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-05-05T00:00:00Z", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10518, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10518, - "CustomerID": "TORTU", - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-05-05T00:00:00Z", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10518, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10576, - "CustomerID": "TORTU", - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00Z", - "RequiredDate": "1997-07-07T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10576, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10576, - "CustomerID": "TORTU", - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00Z", - "RequiredDate": "1997-07-07T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10576, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10576, - "CustomerID": "TORTU", - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00Z", - "RequiredDate": "1997-07-07T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10576, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10676, - "CustomerID": "TORTU", - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-09-29T00:00:00Z", - "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10676, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10676, - "CustomerID": "TORTU", - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-09-29T00:00:00Z", - "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10676, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10676, - "CustomerID": "TORTU", - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-09-29T00:00:00Z", - "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10676, - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10842, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00Z", - "RequiredDate": "1998-02-17T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10842, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10842, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00Z", - "RequiredDate": "1998-02-17T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10842, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10842, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00Z", - "RequiredDate": "1998-02-17T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10842, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10842, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00Z", - "RequiredDate": "1998-02-17T00:00:00Z", - "ShippedDate": "1998-01-29T00:00:00Z", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10842, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10915, - "CustomerID": "TORTU", - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00Z", - "RequiredDate": "1998-03-27T00:00:00Z", - "ShippedDate": "1998-03-02T00:00:00Z", - "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10915, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10915, - "CustomerID": "TORTU", - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00Z", - "RequiredDate": "1998-03-27T00:00:00Z", - "ShippedDate": "1998-03-02T00:00:00Z", - "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10915, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10915, - "CustomerID": "TORTU", - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00Z", - "RequiredDate": "1998-03-27T00:00:00Z", - "ShippedDate": "1998-03-02T00:00:00Z", - "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10915, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11069, - "CustomerID": "TORTU", - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00Z", - "RequiredDate": "1998-06-01T00:00:00Z", - "ShippedDate": "1998-05-06T00:00:00Z", - "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipRegion": null, - "ShipPostalCode": "05033", - "ShipCountry": "Mexico", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11069, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "TRADH", - "CompanyName": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": "05634-030", - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10292, - "CustomerID": "TRADH", - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00Z", - "RequiredDate": "1996-09-25T00:00:00Z", - "ShippedDate": "1996-09-02T00:00:00Z", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10292, - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 20, - "ProductName": "Sir Rodney's Marmalade", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "30 gift boxes", - "UnitPrice": 81, - "UnitsInStock": 40, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10496, - "CustomerID": "TRADH", - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00Z", - "RequiredDate": "1997-05-02T00:00:00Z", - "ShippedDate": "1997-04-07T00:00:00Z", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10496, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10606, - "CustomerID": "TRADH", - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00Z", - "RequiredDate": "1997-08-19T00:00:00Z", - "ShippedDate": "1997-07-31T00:00:00Z", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10606, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10606, - "CustomerID": "TRADH", - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00Z", - "RequiredDate": "1997-08-19T00:00:00Z", - "ShippedDate": "1997-07-31T00:00:00Z", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10606, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10606, - "CustomerID": "TRADH", - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00Z", - "RequiredDate": "1997-08-19T00:00:00Z", - "ShippedDate": "1997-07-31T00:00:00Z", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10606, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10830, - "CustomerID": "TRADH", - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10830, - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 6, - "ProductName": "Grandma's Boysenberry Spread", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 8 oz jars", - "UnitPrice": 25, - "UnitsInStock": 120, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10830, - "CustomerID": "TRADH", - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10830, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10830, - "CustomerID": "TRADH", - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10830, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10830, - "CustomerID": "TRADH", - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00Z", - "RequiredDate": "1998-02-24T00:00:00Z", - "ShippedDate": "1998-01-21T00:00:00Z", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10830, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10834, - "CustomerID": "TRADH", - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00Z", - "RequiredDate": "1998-02-12T00:00:00Z", - "ShippedDate": "1998-01-19T00:00:00Z", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10834, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.05, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10834, - "CustomerID": "TRADH", - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00Z", - "RequiredDate": "1998-02-12T00:00:00Z", - "ShippedDate": "1998-01-19T00:00:00Z", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10834, - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 30, - "ProductName": "Nord-Ost Matjeshering", - "SupplierID": 13, - "CategoryID": 8, - "QuantityPerUnit": "10 - 200 g glasses", - "UnitPrice": 25.89, - "UnitsInStock": 10, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 13, - "CompanyName": "Nord-Ost-Fisch Handelsgesellschaft mbH", - "ContactName": "Sven Petersen", - "ContactTitle": "Coordinator Foreign Markets", - "Address": "Frahmredder 112a", - "City": "Cuxhaven", - "Region": null, - "PostalCode": "27478", - "Country": "Germany", - "Phone": "(04721) 8713", - "Fax": "(04721) 8714", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10839, - "CustomerID": "TRADH", - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00Z", - "RequiredDate": "1998-02-16T00:00:00Z", - "ShippedDate": "1998-01-22T00:00:00Z", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10839, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10839, - "CustomerID": "TRADH", - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00Z", - "RequiredDate": "1998-02-16T00:00:00Z", - "ShippedDate": "1998-01-22T00:00:00Z", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": "05634-030", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10839, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "TRAIH", - "CompanyName": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": "98034", - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10574, - "CustomerID": "TRAIH", - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00Z", - "RequiredDate": "1997-07-17T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10574, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10574, - "CustomerID": "TRAIH", - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00Z", - "RequiredDate": "1997-07-17T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10574, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10574, - "CustomerID": "TRAIH", - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00Z", - "RequiredDate": "1997-07-17T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10574, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10574, - "CustomerID": "TRAIH", - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00Z", - "RequiredDate": "1997-07-17T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10574, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10577, - "CustomerID": "TRAIH", - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00Z", - "RequiredDate": "1997-08-04T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10577, - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10577, - "CustomerID": "TRAIH", - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00Z", - "RequiredDate": "1997-08-04T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10577, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10577, - "CustomerID": "TRAIH", - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00Z", - "RequiredDate": "1997-08-04T00:00:00Z", - "ShippedDate": "1997-06-30T00:00:00Z", - "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10577, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10822, - "CustomerID": "TRAIH", - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10822, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10822, - "CustomerID": "TRAIH", - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00Z", - "RequiredDate": "1998-02-05T00:00:00Z", - "ShippedDate": "1998-01-16T00:00:00Z", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": "98034", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10822, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "VAFFE", - "CompanyName": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "Region": null, - "PostalCode": "8200", - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10367, - "CustomerID": "VAFFE", - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00Z", - "RequiredDate": "1996-12-26T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10367, - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10367, - "CustomerID": "VAFFE", - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00Z", - "RequiredDate": "1996-12-26T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10367, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10367, - "CustomerID": "VAFFE", - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00Z", - "RequiredDate": "1996-12-26T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10367, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10367, - "CustomerID": "VAFFE", - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00Z", - "RequiredDate": "1996-12-26T00:00:00Z", - "ShippedDate": "1996-12-02T00:00:00Z", - "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10367, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10399, - "CustomerID": "VAFFE", - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00Z", - "RequiredDate": "1997-01-14T00:00:00Z", - "ShippedDate": "1997-01-08T00:00:00Z", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10399, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10399, - "CustomerID": "VAFFE", - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00Z", - "RequiredDate": "1997-01-14T00:00:00Z", - "ShippedDate": "1997-01-08T00:00:00Z", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10399, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10399, - "CustomerID": "VAFFE", - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00Z", - "RequiredDate": "1997-01-14T00:00:00Z", - "ShippedDate": "1997-01-08T00:00:00Z", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10399, - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10399, - "CustomerID": "VAFFE", - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00Z", - "RequiredDate": "1997-01-14T00:00:00Z", - "ShippedDate": "1997-01-08T00:00:00Z", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10399, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10465, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00Z", - "RequiredDate": "1997-04-02T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10465, - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10465, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00Z", - "RequiredDate": "1997-04-02T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10465, - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10465, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00Z", - "RequiredDate": "1997-04-02T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10465, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10465, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00Z", - "RequiredDate": "1997-04-02T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10465, - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0.1, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10465, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00Z", - "RequiredDate": "1997-04-02T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10465, - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 50, - "ProductName": "Valkoinen suklaa", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "12 - 100 g bars", - "UnitPrice": 16.25, - "UnitsInStock": 65, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10591, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00Z", - "RequiredDate": "1997-07-21T00:00:00Z", - "ShippedDate": "1997-07-16T00:00:00Z", - "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10591, - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 3, - "ProductName": "Aniseed Syrup", - "SupplierID": 1, - "CategoryID": 2, - "QuantityPerUnit": "12 - 550 ml bottles", - "UnitPrice": 10, - "UnitsInStock": 13, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10591, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00Z", - "RequiredDate": "1997-07-21T00:00:00Z", - "ShippedDate": "1997-07-16T00:00:00Z", - "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10591, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10591, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00Z", - "RequiredDate": "1997-07-21T00:00:00Z", - "ShippedDate": "1997-07-16T00:00:00Z", - "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10591, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10602, - "CustomerID": "VAFFE", - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00Z", - "RequiredDate": "1997-08-14T00:00:00Z", - "ShippedDate": "1997-07-22T00:00:00Z", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10602, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10688, - "CustomerID": "VAFFE", - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00Z", - "RequiredDate": "1997-10-15T00:00:00Z", - "ShippedDate": "1997-10-07T00:00:00Z", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10688, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10688, - "CustomerID": "VAFFE", - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00Z", - "RequiredDate": "1997-10-15T00:00:00Z", - "ShippedDate": "1997-10-07T00:00:00Z", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10688, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10688, - "CustomerID": "VAFFE", - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00Z", - "RequiredDate": "1997-10-15T00:00:00Z", - "ShippedDate": "1997-10-07T00:00:00Z", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10688, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10744, - "CustomerID": "VAFFE", - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00Z", - "RequiredDate": "1997-12-15T00:00:00Z", - "ShippedDate": "1997-11-24T00:00:00Z", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10744, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10769, - "CustomerID": "VAFFE", - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00Z", - "RequiredDate": "1998-01-05T00:00:00Z", - "ShippedDate": "1997-12-12T00:00:00Z", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10769, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10769, - "CustomerID": "VAFFE", - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00Z", - "RequiredDate": "1998-01-05T00:00:00Z", - "ShippedDate": "1997-12-12T00:00:00Z", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10769, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10769, - "CustomerID": "VAFFE", - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00Z", - "RequiredDate": "1998-01-05T00:00:00Z", - "ShippedDate": "1997-12-12T00:00:00Z", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10769, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10769, - "CustomerID": "VAFFE", - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00Z", - "RequiredDate": "1998-01-05T00:00:00Z", - "ShippedDate": "1997-12-12T00:00:00Z", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10769, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10921, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00Z", - "RequiredDate": "1998-04-14T00:00:00Z", - "ShippedDate": "1998-03-09T00:00:00Z", - "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10921, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10921, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00Z", - "RequiredDate": "1998-04-14T00:00:00Z", - "ShippedDate": "1998-03-09T00:00:00Z", - "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10921, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10946, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1998-03-12T00:00:00Z", - "RequiredDate": "1998-04-09T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 2, - "Freight": 27.2, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10946, - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10946, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1998-03-12T00:00:00Z", - "RequiredDate": "1998-04-09T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 2, - "Freight": 27.2, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10946, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10946, - "CustomerID": "VAFFE", - "EmployeeID": 1, - "OrderDate": "1998-03-12T00:00:00Z", - "RequiredDate": "1998-04-09T00:00:00Z", - "ShippedDate": "1998-03-19T00:00:00Z", - "ShipVia": 2, - "Freight": 27.2, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10946, - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10994, - "CustomerID": "VAFFE", - "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00Z", - "RequiredDate": "1998-04-16T00:00:00Z", - "ShippedDate": "1998-04-09T00:00:00Z", - "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipRegion": null, - "ShipPostalCode": "8200", - "ShipCountry": "Denmark", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10994, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.05, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "VICTE", - "CompanyName": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "Region": null, - "PostalCode": "69004", - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10251, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00Z", - "RequiredDate": "1996-08-05T00:00:00Z", - "ShippedDate": "1996-07-15T00:00:00Z", - "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10251, - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.05, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10251, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00Z", - "RequiredDate": "1996-08-05T00:00:00Z", - "ShippedDate": "1996-07-15T00:00:00Z", - "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10251, - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10251, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00Z", - "RequiredDate": "1996-08-05T00:00:00Z", - "ShippedDate": "1996-07-15T00:00:00Z", - "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10251, - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10334, - "CustomerID": "VICTE", - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00Z", - "RequiredDate": "1996-11-18T00:00:00Z", - "ShippedDate": "1996-10-28T00:00:00Z", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10334, - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10334, - "CustomerID": "VICTE", - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00Z", - "RequiredDate": "1996-11-18T00:00:00Z", - "ShippedDate": "1996-10-28T00:00:00Z", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10334, - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10450, - "CustomerID": "VICTE", - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00Z", - "RequiredDate": "1997-03-19T00:00:00Z", - "ShippedDate": "1997-03-11T00:00:00Z", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10450, - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10450, - "CustomerID": "VICTE", - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00Z", - "RequiredDate": "1997-03-19T00:00:00Z", - "ShippedDate": "1997-03-11T00:00:00Z", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10450, - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, - "Discount": 0.2, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10459, - "CustomerID": "VICTE", - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00Z", - "RequiredDate": "1997-03-27T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10459, - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.05, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10459, - "CustomerID": "VICTE", - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00Z", - "RequiredDate": "1997-03-27T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10459, - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10459, - "CustomerID": "VICTE", - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00Z", - "RequiredDate": "1997-03-27T00:00:00Z", - "ShippedDate": "1997-02-28T00:00:00Z", - "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10459, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10478, - "CustomerID": "VICTE", - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00Z", - "RequiredDate": "1997-04-01T00:00:00Z", - "ShippedDate": "1997-03-26T00:00:00Z", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10478, - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 10, - "ProductName": "Ikura", - "SupplierID": 4, - "CategoryID": 8, - "QuantityPerUnit": "12 - 200 ml jars", - "UnitPrice": 31, - "UnitsInStock": 31, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10546, - "CustomerID": "VICTE", - "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00Z", - "RequiredDate": "1997-06-20T00:00:00Z", - "ShippedDate": "1997-05-27T00:00:00Z", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10546, - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 7, - "ProductName": "Uncle Bob's Organic Dried Pears", - "SupplierID": 3, - "CategoryID": 7, - "QuantityPerUnit": "12 - 1 lb pkgs.", - "UnitPrice": 30, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10546, - "CustomerID": "VICTE", - "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00Z", - "RequiredDate": "1997-06-20T00:00:00Z", - "ShippedDate": "1997-05-27T00:00:00Z", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10546, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10546, - "CustomerID": "VICTE", - "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00Z", - "RequiredDate": "1997-06-20T00:00:00Z", - "ShippedDate": "1997-05-27T00:00:00Z", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10546, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10806, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00Z", - "RequiredDate": "1998-01-28T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10806, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10806, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00Z", - "RequiredDate": "1998-01-28T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10806, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10806, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00Z", - "RequiredDate": "1998-01-28T00:00:00Z", - "ShippedDate": "1998-01-05T00:00:00Z", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10806, - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10814, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00Z", - "RequiredDate": "1998-02-02T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10814, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10814, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00Z", - "RequiredDate": "1998-02-02T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10814, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10814, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00Z", - "RequiredDate": "1998-02-02T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10814, - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.15, - "Products": [ - { - "ProductID": 48, - "ProductName": "Chocolade", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 pkgs.", - "UnitPrice": 12.75, - "UnitsInStock": 15, - "UnitsOnOrder": 70, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10814, - "CustomerID": "VICTE", - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00Z", - "RequiredDate": "1998-02-02T00:00:00Z", - "ShippedDate": "1998-01-14T00:00:00Z", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10814, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10843, - "CustomerID": "VICTE", - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00Z", - "RequiredDate": "1998-02-18T00:00:00Z", - "ShippedDate": "1998-01-26T00:00:00Z", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10843, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10850, - "CustomerID": "VICTE", - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10850, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.15, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10850, - "CustomerID": "VICTE", - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10850, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.15, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10850, - "CustomerID": "VICTE", - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-01-30T00:00:00Z", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipRegion": null, - "ShipPostalCode": "69004", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10850, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "VINET", - "CompanyName": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "Region": null, - "PostalCode": "51100", - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10248, - "CustomerID": "VINET", - "EmployeeID": 5, - "OrderDate": "1996-07-04T00:00:00Z", - "RequiredDate": "1996-08-01T00:00:00Z", - "ShippedDate": "1996-07-16T00:00:00Z", - "ShipVia": 3, - "Freight": 32.38, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10248, - "ProductID": 11, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10248, - "CustomerID": "VINET", - "EmployeeID": 5, - "OrderDate": "1996-07-04T00:00:00Z", - "RequiredDate": "1996-08-01T00:00:00Z", - "ShippedDate": "1996-07-16T00:00:00Z", - "ShipVia": 3, - "Freight": 32.38, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10248, - "ProductID": 42, - "UnitPrice": 9.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10248, - "CustomerID": "VINET", - "EmployeeID": 5, - "OrderDate": "1996-07-04T00:00:00Z", - "RequiredDate": "1996-08-01T00:00:00Z", - "ShippedDate": "1996-07-16T00:00:00Z", - "ShipVia": 3, - "Freight": 32.38, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10248, - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10274, - "CustomerID": "VINET", - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00Z", - "RequiredDate": "1996-09-03T00:00:00Z", - "ShippedDate": "1996-08-16T00:00:00Z", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10274, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10274, - "CustomerID": "VINET", - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00Z", - "RequiredDate": "1996-09-03T00:00:00Z", - "ShippedDate": "1996-08-16T00:00:00Z", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10274, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10295, - "CustomerID": "VINET", - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00Z", - "RequiredDate": "1996-09-30T00:00:00Z", - "ShippedDate": "1996-09-10T00:00:00Z", - "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10295, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10737, - "CustomerID": "VINET", - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00Z", - "RequiredDate": "1997-12-09T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10737, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10737, - "CustomerID": "VINET", - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00Z", - "RequiredDate": "1997-12-09T00:00:00Z", - "ShippedDate": "1997-11-18T00:00:00Z", - "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10737, - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 41, - "ProductName": "Jack's New England Clam Chowder", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "12 - 12 oz cans", - "UnitPrice": 9.65, - "UnitsInStock": 85, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10739, - "CustomerID": "VINET", - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00Z", - "RequiredDate": "1997-12-10T00:00:00Z", - "ShippedDate": "1997-11-17T00:00:00Z", - "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10739, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10739, - "CustomerID": "VINET", - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00Z", - "RequiredDate": "1997-12-10T00:00:00Z", - "ShippedDate": "1997-11-17T00:00:00Z", - "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipRegion": null, - "ShipPostalCode": "51100", - "ShipCountry": "France", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10739, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "WANDK", - "CompanyName": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "Region": null, - "PostalCode": "70563", - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10301, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00Z", - "RequiredDate": "1996-10-07T00:00:00Z", - "ShippedDate": "1996-09-17T00:00:00Z", - "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10301, - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10301, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00Z", - "RequiredDate": "1996-10-07T00:00:00Z", - "ShippedDate": "1996-09-17T00:00:00Z", - "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10301, - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10312, - "CustomerID": "WANDK", - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00Z", - "RequiredDate": "1996-10-21T00:00:00Z", - "ShippedDate": "1996-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10312, - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10312, - "CustomerID": "WANDK", - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00Z", - "RequiredDate": "1996-10-21T00:00:00Z", - "ShippedDate": "1996-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10312, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10312, - "CustomerID": "WANDK", - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00Z", - "RequiredDate": "1996-10-21T00:00:00Z", - "ShippedDate": "1996-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10312, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10312, - "CustomerID": "WANDK", - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00Z", - "RequiredDate": "1996-10-21T00:00:00Z", - "ShippedDate": "1996-10-03T00:00:00Z", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10312, - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10348, - "CustomerID": "WANDK", - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00Z", - "RequiredDate": "1996-12-05T00:00:00Z", - "ShippedDate": "1996-11-15T00:00:00Z", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10348, - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10348, - "CustomerID": "WANDK", - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00Z", - "RequiredDate": "1996-12-05T00:00:00Z", - "ShippedDate": "1996-11-15T00:00:00Z", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10348, - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10356, - "CustomerID": "WANDK", - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00Z", - "RequiredDate": "1996-12-16T00:00:00Z", - "ShippedDate": "1996-11-27T00:00:00Z", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10356, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10356, - "CustomerID": "WANDK", - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00Z", - "RequiredDate": "1996-12-16T00:00:00Z", - "ShippedDate": "1996-11-27T00:00:00Z", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10356, - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10356, - "CustomerID": "WANDK", - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00Z", - "RequiredDate": "1996-12-16T00:00:00Z", - "ShippedDate": "1996-11-27T00:00:00Z", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10356, - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10513, - "CustomerID": "WANDK", - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00Z", - "RequiredDate": "1997-06-03T00:00:00Z", - "ShippedDate": "1997-04-28T00:00:00Z", - "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10513, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10513, - "CustomerID": "WANDK", - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00Z", - "RequiredDate": "1997-06-03T00:00:00Z", - "ShippedDate": "1997-04-28T00:00:00Z", - "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10513, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10513, - "CustomerID": "WANDK", - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00Z", - "RequiredDate": "1997-06-03T00:00:00Z", - "ShippedDate": "1997-04-28T00:00:00Z", - "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10513, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10632, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00Z", - "RequiredDate": "1997-09-11T00:00:00Z", - "ShippedDate": "1997-08-19T00:00:00Z", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10632, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10632, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00Z", - "RequiredDate": "1997-09-11T00:00:00Z", - "ShippedDate": "1997-08-19T00:00:00Z", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10632, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10640, - "CustomerID": "WANDK", - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00Z", - "RequiredDate": "1997-09-18T00:00:00Z", - "ShippedDate": "1997-08-28T00:00:00Z", - "ShipVia": 1, - "Freight": 23.55, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10640, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10640, - "CustomerID": "WANDK", - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00Z", - "RequiredDate": "1997-09-18T00:00:00Z", - "ShippedDate": "1997-08-28T00:00:00Z", - "ShipVia": 1, - "Freight": 23.55, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10640, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.25, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10651, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00Z", - "RequiredDate": "1997-09-29T00:00:00Z", - "ShippedDate": "1997-09-11T00:00:00Z", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10651, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10651, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00Z", - "RequiredDate": "1997-09-29T00:00:00Z", - "ShippedDate": "1997-09-11T00:00:00Z", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10651, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10668, - "CustomerID": "WANDK", - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00Z", - "RequiredDate": "1997-10-13T00:00:00Z", - "ShippedDate": "1997-09-23T00:00:00Z", - "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10668, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10668, - "CustomerID": "WANDK", - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00Z", - "RequiredDate": "1997-10-13T00:00:00Z", - "ShippedDate": "1997-09-23T00:00:00Z", - "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10668, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10668, - "CustomerID": "WANDK", - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00Z", - "RequiredDate": "1997-10-13T00:00:00Z", - "ShippedDate": "1997-09-23T00:00:00Z", - "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10668, - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1, - "Products": [ - { - "ProductID": 64, - "ProductName": "Wimmers gute Semmelknödel", - "SupplierID": 12, - "CategoryID": 5, - "QuantityPerUnit": "20 bags x 4 pieces", - "UnitPrice": 33.25, - "UnitsInStock": 22, - "UnitsOnOrder": 80, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11046, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00Z", - "RequiredDate": "1998-05-21T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11046, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11046, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00Z", - "RequiredDate": "1998-05-21T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11046, - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 32, - "ProductName": "Mascarpone Fabioli", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 32, - "UnitsInStock": 9, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 11046, - "CustomerID": "WANDK", - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00Z", - "RequiredDate": "1998-05-21T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipRegion": null, - "ShipPostalCode": "70563", - "ShipCountry": "Germany", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11046, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.05, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "WARTH", - "CompanyName": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "Region": null, - "PostalCode": "90110", - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10266, - "CustomerID": "WARTH", - "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00Z", - "RequiredDate": "1996-09-06T00:00:00Z", - "ShippedDate": "1996-07-31T00:00:00Z", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10266, - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.05, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10270, - "CustomerID": "WARTH", - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00Z", - "RequiredDate": "1996-08-29T00:00:00Z", - "ShippedDate": "1996-08-02T00:00:00Z", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10270, - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10270, - "CustomerID": "WARTH", - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00Z", - "RequiredDate": "1996-08-29T00:00:00Z", - "ShippedDate": "1996-08-02T00:00:00Z", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10270, - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10320, - "CustomerID": "WARTH", - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00Z", - "RequiredDate": "1996-10-17T00:00:00Z", - "ShippedDate": "1996-10-18T00:00:00Z", - "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10320, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10333, - "CustomerID": "WARTH", - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00Z", - "RequiredDate": "1996-11-15T00:00:00Z", - "ShippedDate": "1996-10-25T00:00:00Z", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10333, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10333, - "CustomerID": "WARTH", - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00Z", - "RequiredDate": "1996-11-15T00:00:00Z", - "ShippedDate": "1996-10-25T00:00:00Z", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10333, - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10333, - "CustomerID": "WARTH", - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00Z", - "RequiredDate": "1996-11-15T00:00:00Z", - "ShippedDate": "1996-10-25T00:00:00Z", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10333, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, - "Discount": 0.1, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10412, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00Z", - "RequiredDate": "1997-02-10T00:00:00Z", - "ShippedDate": "1997-01-15T00:00:00Z", - "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10412, - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10416, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10416, - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10416, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10416, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10416, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00Z", - "RequiredDate": "1997-02-13T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10416, - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 57, - "ProductName": "Ravioli Angelo", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 19.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10437, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00Z", - "RequiredDate": "1997-03-05T00:00:00Z", - "ShippedDate": "1997-02-12T00:00:00Z", - "ShipVia": 1, - "Freight": 19.97, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10437, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10455, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00Z", - "RequiredDate": "1997-04-07T00:00:00Z", - "ShippedDate": "1997-03-03T00:00:00Z", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10455, - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 39, - "ProductName": "Chartreuse verte", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "750 cc per bottle", - "UnitPrice": 18, - "UnitsInStock": 69, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10455, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00Z", - "RequiredDate": "1997-04-07T00:00:00Z", - "ShippedDate": "1997-03-03T00:00:00Z", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10455, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10455, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00Z", - "RequiredDate": "1997-04-07T00:00:00Z", - "ShippedDate": "1997-03-03T00:00:00Z", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10455, - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10455, - "CustomerID": "WARTH", - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00Z", - "RequiredDate": "1997-04-07T00:00:00Z", - "ShippedDate": "1997-03-03T00:00:00Z", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10455, - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 71, - "ProductName": "Flotemysost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 21.5, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10526, - "CustomerID": "WARTH", - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00Z", - "RequiredDate": "1997-06-02T00:00:00Z", - "ShippedDate": "1997-05-15T00:00:00Z", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10526, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.15, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10526, - "CustomerID": "WARTH", - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00Z", - "RequiredDate": "1997-06-02T00:00:00Z", - "ShippedDate": "1997-05-15T00:00:00Z", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10526, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10526, - "CustomerID": "WARTH", - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00Z", - "RequiredDate": "1997-06-02T00:00:00Z", - "ShippedDate": "1997-05-15T00:00:00Z", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10526, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10553, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-03T00:00:00Z", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10553, - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 11, - "ProductName": "Queso Cabrales", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "1 kg pkg.", - "UnitPrice": 21, - "UnitsInStock": 22, - "UnitsOnOrder": 30, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10553, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-03T00:00:00Z", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10553, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10553, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-03T00:00:00Z", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10553, - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, - "Discount": 0, - "Products": [ - { - "ProductID": 22, - "ProductName": "Gustaf's Knäckebröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "24 - 500 g pkgs.", - "UnitPrice": 21, - "UnitsInStock": 104, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10553, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-03T00:00:00Z", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10553, - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10553, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00Z", - "RequiredDate": "1997-06-27T00:00:00Z", - "ShippedDate": "1997-06-03T00:00:00Z", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10553, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10583, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00Z", - "RequiredDate": "1997-07-28T00:00:00Z", - "ShippedDate": "1997-07-04T00:00:00Z", - "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10583, - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 29, - "ProductName": "Thüringer Rostbratwurst", - "SupplierID": 12, - "CategoryID": 6, - "QuantityPerUnit": "50 bags x 30 sausgs.", - "UnitPrice": 123.79, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10583, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00Z", - "RequiredDate": "1997-07-28T00:00:00Z", - "ShippedDate": "1997-07-04T00:00:00Z", - "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10583, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.15, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10583, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00Z", - "RequiredDate": "1997-07-28T00:00:00Z", - "ShippedDate": "1997-07-04T00:00:00Z", - "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10583, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.15, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10636, - "CustomerID": "WARTH", - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00Z", - "RequiredDate": "1997-09-16T00:00:00Z", - "ShippedDate": "1997-08-26T00:00:00Z", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10636, - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10636, - "CustomerID": "WARTH", - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00Z", - "RequiredDate": "1997-09-16T00:00:00Z", - "ShippedDate": "1997-08-26T00:00:00Z", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10636, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10750, - "CustomerID": "WARTH", - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00Z", - "RequiredDate": "1997-12-19T00:00:00Z", - "ShippedDate": "1997-11-24T00:00:00Z", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10750, - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, - "Discount": 0.15, - "Products": [ - { - "ProductID": 14, - "ProductName": "Tofu", - "SupplierID": 6, - "CategoryID": 7, - "QuantityPerUnit": "40 - 100 g pkgs.", - "UnitPrice": 23.25, - "UnitsInStock": 35, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10750, - "CustomerID": "WARTH", - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00Z", - "RequiredDate": "1997-12-19T00:00:00Z", - "ShippedDate": "1997-11-24T00:00:00Z", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10750, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10750, - "CustomerID": "WARTH", - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00Z", - "RequiredDate": "1997-12-19T00:00:00Z", - "ShippedDate": "1997-11-24T00:00:00Z", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10750, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0.15, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10781, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00Z", - "RequiredDate": "1998-01-14T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10781, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10781, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00Z", - "RequiredDate": "1998-01-14T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10781, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.2, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10781, - "CustomerID": "WARTH", - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00Z", - "RequiredDate": "1998-01-14T00:00:00Z", - "ShippedDate": "1997-12-19T00:00:00Z", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10781, - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11025, - "CustomerID": "WARTH", - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11025, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11025, - "CustomerID": "WARTH", - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00Z", - "RequiredDate": "1998-05-13T00:00:00Z", - "ShippedDate": "1998-04-24T00:00:00Z", - "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipRegion": null, - "ShipPostalCode": "90110", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11025, - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - } - ] - }, - { - "CustomerID": "WELLI", - "CompanyName": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": "08737-363", - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": null, - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10256, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00Z", - "RequiredDate": "1996-08-12T00:00:00Z", - "ShippedDate": "1996-07-17T00:00:00Z", - "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10256, - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10256, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00Z", - "RequiredDate": "1996-08-12T00:00:00Z", - "ShippedDate": "1996-07-17T00:00:00Z", - "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10256, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10420, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10420, - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 9, - "ProductName": "Mishi Kobe Niku", - "SupplierID": 4, - "CategoryID": 6, - "QuantityPerUnit": "18 - 500 g pkgs.", - "UnitPrice": 97, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10420, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10420, - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1, - "Products": [ - { - "ProductID": 13, - "ProductName": "Konbu", - "SupplierID": 6, - "CategoryID": 8, - "QuantityPerUnit": "2 kg box", - "UnitPrice": 6, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 6, - "CompanyName": "Mayumi's", - "ContactName": "Mayumi Ohno", - "ContactTitle": "Marketing Representative", - "Address": "92 Setsuko Chuo-ku", - "City": "Osaka", - "Region": null, - "PostalCode": "545", - "Country": "Japan", - "Phone": "(06) 431-7877", - "Fax": null, - "Homepage": "Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#" - } - } - ] - } - }, - { - "OrderID": 10420, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10420, - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10420, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00Z", - "RequiredDate": "1997-02-18T00:00:00Z", - "ShippedDate": "1997-01-27T00:00:00Z", - "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10420, - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10585, - "CustomerID": "WELLI", - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00Z", - "RequiredDate": "1997-07-29T00:00:00Z", - "ShippedDate": "1997-07-10T00:00:00Z", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10585, - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 47, - "ProductName": "Zaanse koeken", - "SupplierID": 22, - "CategoryID": 3, - "QuantityPerUnit": "10 - 4 oz boxes", - "UnitPrice": 9.5, - "UnitsInStock": 36, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 22, - "CompanyName": "Zaanse Snoepfabriek", - "ContactName": "Dirk Luchte", - "ContactTitle": "Accounting Manager", - "Address": "Verkoop Rijnweg 22", - "City": "Zaandam", - "Region": null, - "PostalCode": "9999 ZZ", - "Country": "Netherlands", - "Phone": "(12345) 1212", - "Fax": "(12345) 1210", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10644, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00Z", - "RequiredDate": "1997-09-22T00:00:00Z", - "ShippedDate": "1997-09-01T00:00:00Z", - "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10644, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.1, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10644, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00Z", - "RequiredDate": "1997-09-22T00:00:00Z", - "ShippedDate": "1997-09-01T00:00:00Z", - "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10644, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10644, - "CustomerID": "WELLI", - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00Z", - "RequiredDate": "1997-09-22T00:00:00Z", - "ShippedDate": "1997-09-01T00:00:00Z", - "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10644, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10803, - "CustomerID": "WELLI", - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-01-06T00:00:00Z", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10803, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.05, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10803, - "CustomerID": "WELLI", - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-01-06T00:00:00Z", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10803, - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 25, - "ProductName": "NuNuCa Nuß-Nougat-Creme", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "20 - 450 g glasses", - "UnitPrice": 14, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10803, - "CustomerID": "WELLI", - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00Z", - "RequiredDate": "1998-01-27T00:00:00Z", - "ShippedDate": "1998-01-06T00:00:00Z", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10803, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.05, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10809, - "CustomerID": "WELLI", - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00Z", - "RequiredDate": "1998-01-29T00:00:00Z", - "ShippedDate": "1998-01-07T00:00:00Z", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10809, - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 52, - "ProductName": "Filo Mix", - "SupplierID": 24, - "CategoryID": 5, - "QuantityPerUnit": "16 - 2 kg boxes", - "UnitPrice": 7, - "UnitsInStock": 38, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10900, - "CustomerID": "WELLI", - "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00Z", - "RequiredDate": "1998-03-20T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10900, - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25, - "Products": [ - { - "ProductID": 70, - "ProductName": "Outback Lager", - "SupplierID": 7, - "CategoryID": 1, - "QuantityPerUnit": "24 - 355 ml bottles", - "UnitPrice": 15, - "UnitsInStock": 15, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10905, - "CustomerID": "WELLI", - "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-03-06T00:00:00Z", - "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10905, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10935, - "CustomerID": "WELLI", - "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00Z", - "RequiredDate": "1998-04-06T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10935, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10935, - "CustomerID": "WELLI", - "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00Z", - "RequiredDate": "1998-04-06T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10935, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10935, - "CustomerID": "WELLI", - "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00Z", - "RequiredDate": "1998-04-06T00:00:00Z", - "ShippedDate": "1998-03-18T00:00:00Z", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": "08737-363", - "ShipCountry": "Brazil", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10935, - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25, - "Products": [ - { - "ProductID": 23, - "ProductName": "Tunnbröd", - "SupplierID": 9, - "CategoryID": 5, - "QuantityPerUnit": "12 - 250 g pkgs.", - "UnitPrice": 9, - "UnitsInStock": 61, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 9, - "CompanyName": "PB Knäckebröd AB", - "ContactName": "Lars Peterson", - "ContactTitle": "Sales Agent", - "Address": "Kaloadagatan 13", - "City": "Göteborg", - "Region": null, - "PostalCode": "S-345 67", - "Country": "Sweden", - "Phone": "031-987 65 43", - "Fax": "031-987 65 91", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "WHITC", - "CompanyName": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": "98128", - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10269, - "CustomerID": "WHITC", - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00Z", - "RequiredDate": "1996-08-14T00:00:00Z", - "ShippedDate": "1996-08-09T00:00:00Z", - "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10269, - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0.05, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10269, - "CustomerID": "WHITC", - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00Z", - "RequiredDate": "1996-08-14T00:00:00Z", - "ShippedDate": "1996-08-09T00:00:00Z", - "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10269, - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0.05, - "Products": [ - { - "ProductID": 72, - "ProductName": "Mozzarella di Giovanni", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "24 - 200 g pkgs.", - "UnitPrice": 34.8, - "UnitsInStock": 14, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10344, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00Z", - "RequiredDate": "1996-11-29T00:00:00Z", - "ShippedDate": "1996-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10344, - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 4, - "ProductName": "Chef Anton's Cajun Seasoning", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "48 - 6 oz jars", - "UnitPrice": 22, - "UnitsInStock": 53, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10344, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00Z", - "RequiredDate": "1996-11-29T00:00:00Z", - "ShippedDate": "1996-11-05T00:00:00Z", - "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10344, - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10469, - "CustomerID": "WHITC", - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00Z", - "RequiredDate": "1997-04-07T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 1, - "Freight": 60.18, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10469, - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.15, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10469, - "CustomerID": "WHITC", - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00Z", - "RequiredDate": "1997-04-07T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 1, - "Freight": 60.18, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10469, - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.15, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10469, - "CustomerID": "WHITC", - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00Z", - "RequiredDate": "1997-04-07T00:00:00Z", - "ShippedDate": "1997-03-14T00:00:00Z", - "ShipVia": 1, - "Freight": 60.18, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10469, - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.15, - "Products": [ - { - "ProductID": 44, - "ProductName": "Gula Malacca", - "SupplierID": 20, - "CategoryID": 2, - "QuantityPerUnit": "20 - 2 kg bags", - "UnitPrice": 19.45, - "UnitsInStock": 27, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10483, - "CustomerID": "WHITC", - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00Z", - "RequiredDate": "1997-04-21T00:00:00Z", - "ShippedDate": "1997-04-25T00:00:00Z", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10483, - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, - "Discount": 0.05, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10483, - "CustomerID": "WHITC", - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00Z", - "RequiredDate": "1997-04-21T00:00:00Z", - "ShippedDate": "1997-04-25T00:00:00Z", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10483, - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, - "Discount": 0.05, - "Products": [ - { - "ProductID": 77, - "ProductName": "Original Frankfurter grüne Soße", - "SupplierID": 12, - "CategoryID": 2, - "QuantityPerUnit": "12 boxes", - "UnitPrice": 13, - "UnitsInStock": 32, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10504, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-04-18T00:00:00Z", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10504, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10504, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-04-18T00:00:00Z", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10504, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10504, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-04-18T00:00:00Z", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10504, - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 53, - "ProductName": "Perth Pasties", - "SupplierID": 24, - "CategoryID": 6, - "QuantityPerUnit": "48 pieces", - "UnitPrice": 32.8, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10504, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00Z", - "RequiredDate": "1997-05-09T00:00:00Z", - "ShippedDate": "1997-04-18T00:00:00Z", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10504, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10596, - "CustomerID": "WHITC", - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00Z", - "RequiredDate": "1997-08-08T00:00:00Z", - "ShippedDate": "1997-08-12T00:00:00Z", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10596, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, - "Discount": 0.2, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10596, - "CustomerID": "WHITC", - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00Z", - "RequiredDate": "1997-08-08T00:00:00Z", - "ShippedDate": "1997-08-12T00:00:00Z", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10596, - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2, - "Products": [ - { - "ProductID": 63, - "ProductName": "Vegie-spread", - "SupplierID": 7, - "CategoryID": 2, - "QuantityPerUnit": "15 - 625 g jars", - "UnitPrice": 43.9, - "UnitsInStock": 24, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10596, - "CustomerID": "WHITC", - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00Z", - "RequiredDate": "1997-08-08T00:00:00Z", - "ShippedDate": "1997-08-12T00:00:00Z", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10596, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10693, - "CustomerID": "WHITC", - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-10-10T00:00:00Z", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10693, - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 9, - "ProductName": "Mishi Kobe Niku", - "SupplierID": 4, - "CategoryID": 6, - "QuantityPerUnit": "18 - 500 g pkgs.", - "UnitPrice": 97, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10693, - "CustomerID": "WHITC", - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-10-10T00:00:00Z", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10693, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.15, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10693, - "CustomerID": "WHITC", - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-10-10T00:00:00Z", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10693, - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.15, - "Products": [ - { - "ProductID": 69, - "ProductName": "Gudbrandsdalsost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "10 kg pkg.", - "UnitPrice": 36, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10693, - "CustomerID": "WHITC", - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00Z", - "RequiredDate": "1997-10-20T00:00:00Z", - "ShippedDate": "1997-10-10T00:00:00Z", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10693, - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.15, - "Products": [ - { - "ProductID": 73, - "ProductName": "Röd Kaviar", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 150 g jars", - "UnitPrice": 15, - "UnitsInStock": 101, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10696, - "CustomerID": "WHITC", - "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10696, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10696, - "CustomerID": "WHITC", - "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00Z", - "RequiredDate": "1997-11-19T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10696, - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 18, - "Discount": 0, - "Products": [ - { - "ProductID": 46, - "ProductName": "Spegesild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "4 - 450 g glasses", - "UnitPrice": 12, - "UnitsInStock": 95, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10723, - "CustomerID": "WHITC", - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00Z", - "RequiredDate": "1997-11-27T00:00:00Z", - "ShippedDate": "1997-11-25T00:00:00Z", - "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10723, - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 26, - "ProductName": "Gumbär Gummibärchen", - "SupplierID": 11, - "CategoryID": 3, - "QuantityPerUnit": "100 - 250 g bags", - "UnitPrice": 31.23, - "UnitsInStock": 15, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 11, - "CompanyName": "Heli Süßwaren GmbH \u0026 Co. KG", - "ContactName": "Petra Winkler", - "ContactTitle": "Sales Manager", - "Address": "Tiergartenstraße 5", - "City": "Berlin", - "Region": null, - "PostalCode": "10785", - "Country": "Germany", - "Phone": "(010) 9984510", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10740, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00Z", - "RequiredDate": "1997-12-11T00:00:00Z", - "ShippedDate": "1997-11-25T00:00:00Z", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10740, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, - "Discount": 0.2, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10740, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00Z", - "RequiredDate": "1997-12-11T00:00:00Z", - "ShippedDate": "1997-11-25T00:00:00Z", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10740, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10740, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00Z", - "RequiredDate": "1997-12-11T00:00:00Z", - "ShippedDate": "1997-11-25T00:00:00Z", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10740, - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.2, - "Products": [ - { - "ProductID": 45, - "ProductName": "Rogede sild", - "SupplierID": 21, - "CategoryID": 8, - "QuantityPerUnit": "1k pkg.", - "UnitPrice": 9.5, - "UnitsInStock": 5, - "UnitsOnOrder": 70, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 21, - "CompanyName": "Lyngbysild", - "ContactName": "Niels Petersen", - "ContactTitle": "Sales Manager", - "Address": "Lyngbysild Fiskebakken 10", - "City": "Lyngby", - "Region": null, - "PostalCode": "2800", - "Country": "Denmark", - "Phone": "43844108", - "Fax": "43844115", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10740, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00Z", - "RequiredDate": "1997-12-11T00:00:00Z", - "ShippedDate": "1997-11-25T00:00:00Z", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10740, - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0.2, - "Products": [ - { - "ProductID": 56, - "ProductName": "Gnocchi di nonna Alice", - "SupplierID": 26, - "CategoryID": 5, - "QuantityPerUnit": "24 - 250 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 21, - "UnitsOnOrder": 10, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 26, - "CompanyName": "Pasta Buttini s.r.l.", - "ContactName": "Giovanni Giudici", - "ContactTitle": "Order Administrator", - "Address": "Via dei Gelsomini, 153", - "City": "Salerno", - "Region": null, - "PostalCode": "84100", - "Country": "Italy", - "Phone": "(089) 6547665", - "Fax": "(089) 6547667", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10861, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00Z", - "RequiredDate": "1998-02-27T00:00:00Z", - "ShippedDate": "1998-02-17T00:00:00Z", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10861, - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, - "Discount": 0, - "Products": [ - { - "ProductID": 17, - "ProductName": "Alice Mutton", - "SupplierID": 7, - "CategoryID": 6, - "QuantityPerUnit": "20 - 1 kg tins", - "UnitPrice": 39, - "UnitsInStock": 0, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10861, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00Z", - "RequiredDate": "1998-02-27T00:00:00Z", - "ShippedDate": "1998-02-17T00:00:00Z", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10861, - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 18, - "ProductName": "Carnarvon Tigers", - "SupplierID": 7, - "CategoryID": 8, - "QuantityPerUnit": "16 kg pkg.", - "UnitPrice": 62.5, - "UnitsInStock": 42, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10861, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00Z", - "RequiredDate": "1998-02-27T00:00:00Z", - "ShippedDate": "1998-02-17T00:00:00Z", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10861, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10861, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00Z", - "RequiredDate": "1998-02-27T00:00:00Z", - "ShippedDate": "1998-02-17T00:00:00Z", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10861, - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 33, - "ProductName": "Geitost", - "SupplierID": 15, - "CategoryID": 4, - "QuantityPerUnit": "500 g", - "UnitPrice": 2.5, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 15, - "CompanyName": "Norske Meierier", - "ContactName": "Beate Vileid", - "ContactTitle": "Marketing Manager", - "Address": "Hatlevegen 5", - "City": "Sandvika", - "Region": null, - "PostalCode": "1320", - "Country": "Norway", - "Phone": "(0)2-953010", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10861, - "CustomerID": "WHITC", - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00Z", - "RequiredDate": "1998-02-27T00:00:00Z", - "ShippedDate": "1998-02-17T00:00:00Z", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10861, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10904, - "CustomerID": "WHITC", - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-02-27T00:00:00Z", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10904, - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10904, - "CustomerID": "WHITC", - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00Z", - "RequiredDate": "1998-03-24T00:00:00Z", - "ShippedDate": "1998-02-27T00:00:00Z", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10904, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11032, - "CustomerID": "WHITC", - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11032, - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 36, - "ProductName": "Inlagd Sill", - "SupplierID": 17, - "CategoryID": 8, - "QuantityPerUnit": "24 - 250 g jars", - "UnitPrice": 19, - "UnitsInStock": 112, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 17, - "CompanyName": "Svensk Sjöföda AB", - "ContactName": "Michael Björn", - "ContactTitle": "Sales Representative", - "Address": "Brovallavägen 231", - "City": "Stockholm", - "Region": null, - "PostalCode": "S-123 45", - "Country": "Sweden", - "Phone": "08-123 45 67", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11032, - "CustomerID": "WHITC", - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11032, - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, - "Discount": 0, - "Products": [ - { - "ProductID": 38, - "ProductName": "Côte de Blaye", - "SupplierID": 18, - "CategoryID": 1, - "QuantityPerUnit": "12 - 75 cl bottles", - "UnitPrice": 263.5, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 18, - "CompanyName": "Aux joyeux ecclésiastiques", - "ContactName": "Guylène Nodier", - "ContactTitle": "Sales Manager", - "Address": "203, Rue des Francs-Bourgeois", - "City": "Paris", - "Region": null, - "PostalCode": "75004", - "Country": "France", - "Phone": "(1) 03.83.00.68", - "Fax": "(1) 03.83.00.62", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11032, - "CustomerID": "WHITC", - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00Z", - "RequiredDate": "1998-05-15T00:00:00Z", - "ShippedDate": "1998-04-23T00:00:00Z", - "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 11032, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11066, - "CustomerID": "WHITC", - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11066, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11066, - "CustomerID": "WHITC", - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11066, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11066, - "CustomerID": "WHITC", - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00Z", - "RequiredDate": "1998-05-29T00:00:00Z", - "ShippedDate": "1998-05-04T00:00:00Z", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": "98124", - "ShipCountry": "USA", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 11066, - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0, - "Products": [ - { - "ProductID": 34, - "ProductName": "Sasquatch Ale", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 14, - "UnitsInStock": 111, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "WILMK", - "CompanyName": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "Region": null, - "PostalCode": "21240", - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10615, - "CustomerID": "WILMK", - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00Z", - "RequiredDate": "1997-08-27T00:00:00Z", - "ShippedDate": "1997-08-06T00:00:00Z", - "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10615, - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 55, - "ProductName": "Pâté chinois", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "24 boxes x 2 pies", - "UnitPrice": 24, - "UnitsInStock": 115, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10673, - "CustomerID": "WILMK", - "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00Z", - "RequiredDate": "1997-10-16T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10673, - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 16, - "ProductName": "Pavlova", - "SupplierID": 7, - "CategoryID": 3, - "QuantityPerUnit": "32 - 500 g boxes", - "UnitPrice": 17.45, - "UnitsInStock": 29, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 7, - "CompanyName": "Pavlova, Ltd.", - "ContactName": "Ian Devling", - "ContactTitle": "Marketing Manager", - "Address": "74 Rose St. Moonie Ponds", - "City": "Melbourne", - "Region": "Victoria", - "PostalCode": "3058", - "Country": "Australia", - "Phone": "(03) 444-2343", - "Fax": "(03) 444-6588", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10673, - "CustomerID": "WILMK", - "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00Z", - "RequiredDate": "1997-10-16T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10673, - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 42, - "ProductName": "Singaporean Hokkien Fried Mee", - "SupplierID": 20, - "CategoryID": 5, - "QuantityPerUnit": "32 - 1 kg pkgs.", - "UnitPrice": 14, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 5, - "CategoryName": "Grains/Cereals", - "Description": "Breads, crackers, pasta, and cereal", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10673, - "CustomerID": "WILMK", - "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00Z", - "RequiredDate": "1997-10-16T00:00:00Z", - "ShippedDate": "1997-09-19T00:00:00Z", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10673, - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 43, - "ProductName": "Ipoh Coffee", - "SupplierID": 20, - "CategoryID": 1, - "QuantityPerUnit": "16 - 500 g tins", - "UnitPrice": 46, - "UnitsInStock": 17, - "UnitsOnOrder": 10, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 20, - "CompanyName": "Leka Trading", - "ContactName": "Chandra Leka", - "ContactTitle": "Owner", - "Address": "471 Serangoon Loop, Suite #402", - "City": "Singapore", - "Region": null, - "PostalCode": "0512", - "Country": "Singapore", - "Phone": "555-8787", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10695, - "CustomerID": "WILMK", - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00Z", - "RequiredDate": "1997-11-18T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10695, - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 8, - "ProductName": "Northwoods Cranberry Sauce", - "SupplierID": 3, - "CategoryID": 2, - "QuantityPerUnit": "12 - 12 oz jars", - "UnitPrice": 40, - "UnitsInStock": 6, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 3, - "CompanyName": "Grandma Kelly's Homestead", - "ContactName": "Regina Murphy", - "ContactTitle": "Sales Representative", - "Address": "707 Oxford Rd.", - "City": "Ann Arbor", - "Region": "MI", - "PostalCode": "48104", - "Country": "USA", - "Phone": "(313) 555-5735", - "Fax": "(313) 555-3349", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10695, - "CustomerID": "WILMK", - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00Z", - "RequiredDate": "1997-11-18T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10695, - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0, - "Products": [ - { - "ProductID": 12, - "ProductName": "Queso Manchego La Pastora", - "SupplierID": 5, - "CategoryID": 4, - "QuantityPerUnit": "10 - 500 g pkgs.", - "UnitPrice": 38, - "UnitsInStock": 86, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 5, - "CompanyName": "Cooperativa de Quesos 'Las Cabras'", - "ContactName": "Antonio del Valle Saavedra", - "ContactTitle": "Export Administrator", - "Address": "Calle del Rosal 4", - "City": "Oviedo", - "Region": "Asturias", - "PostalCode": "33007", - "Country": "Spain", - "Phone": "(98) 598 76 54", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10695, - "CustomerID": "WILMK", - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00Z", - "RequiredDate": "1997-11-18T00:00:00Z", - "ShippedDate": "1997-10-14T00:00:00Z", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10695, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10873, - "CustomerID": "WILMK", - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10873, - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 21, - "ProductName": "Sir Rodney's Scones", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "24 pkgs. x 4 pieces", - "UnitPrice": 10, - "UnitsInStock": 3, - "UnitsOnOrder": 40, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10873, - "CustomerID": "WILMK", - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00Z", - "RequiredDate": "1998-03-06T00:00:00Z", - "ShippedDate": "1998-02-09T00:00:00Z", - "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 10873, - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 28, - "ProductName": "Rössle Sauerkraut", - "SupplierID": 12, - "CategoryID": 7, - "QuantityPerUnit": "25 - 825 g cans", - "UnitPrice": 45.6, - "UnitsInStock": 26, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 10879, - "CustomerID": "WILMK", - "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00Z", - "RequiredDate": "1998-03-10T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10879, - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 40, - "ProductName": "Boston Crab Meat", - "SupplierID": 19, - "CategoryID": 8, - "QuantityPerUnit": "24 - 4 oz tins", - "UnitPrice": 18.4, - "UnitsInStock": 123, - "UnitsOnOrder": 0, - "ReorderLevel": 30, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 19, - "CompanyName": "New England Seafood Cannery", - "ContactName": "Robb Merchant", - "ContactTitle": "Wholesale Account Agent", - "Address": "Order Processing Dept. 2100 Paul Revere Blvd.", - "City": "Boston", - "Region": "MA", - "PostalCode": "02134", - "Country": "USA", - "Phone": "(617) 555-3267", - "Fax": "(617) 555-3389", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10879, - "CustomerID": "WILMK", - "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00Z", - "RequiredDate": "1998-03-10T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10879, - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 65, - "ProductName": "Louisiana Fiery Hot Pepper Sauce", - "SupplierID": 2, - "CategoryID": 2, - "QuantityPerUnit": "32 - 8 oz bottles", - "UnitPrice": 21.05, - "UnitsInStock": 76, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 2, - "CompanyName": "New Orleans Cajun Delights", - "ContactName": "Shelley Burke", - "ContactTitle": "Order Administrator", - "Address": "P.O. Box 78934", - "City": "New Orleans", - "Region": "LA", - "PostalCode": "70117", - "Country": "USA", - "Phone": "(100) 555-4822", - "Fax": null, - "Homepage": "#CAJUN.HTM#" - } - } - ] - } - }, - { - "OrderID": 10879, - "CustomerID": "WILMK", - "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00Z", - "RequiredDate": "1998-03-10T00:00:00Z", - "ShippedDate": "1998-02-12T00:00:00Z", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10879, - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 76, - "ProductName": "Lakkalikööri", - "SupplierID": 23, - "CategoryID": 1, - "QuantityPerUnit": "500 ml", - "UnitPrice": 18, - "UnitsInStock": 57, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10910, - "CustomerID": "WILMK", - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10910, - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 19, - "ProductName": "Teatime Chocolate Biscuits", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 12 pieces", - "UnitPrice": 9.2, - "UnitsInStock": 25, - "UnitsOnOrder": 0, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10910, - "CustomerID": "WILMK", - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10910, - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 49, - "ProductName": "Maxilaku", - "SupplierID": 23, - "CategoryID": 3, - "QuantityPerUnit": "24 - 50 g pkgs.", - "UnitPrice": 20, - "UnitsInStock": 10, - "UnitsOnOrder": 60, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 23, - "CompanyName": "Karkki Oy", - "ContactName": "Anne Heikkonen", - "ContactTitle": "Product Manager", - "Address": "Valtakatu 12", - "City": "Lappeenranta", - "Region": null, - "PostalCode": "53120", - "Country": "Finland", - "Phone": "(953) 10956", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10910, - "CustomerID": "WILMK", - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00Z", - "RequiredDate": "1998-03-26T00:00:00Z", - "ShippedDate": "1998-03-04T00:00:00Z", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10910, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11005, - "CustomerID": "WILMK", - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00Z", - "RequiredDate": "1998-05-05T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11005, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 11005, - "CustomerID": "WILMK", - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00Z", - "RequiredDate": "1998-05-05T00:00:00Z", - "ShippedDate": "1998-04-10T00:00:00Z", - "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipRegion": null, - "ShipPostalCode": "21240", - "ShipCountry": "Finland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11005, - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 59, - "ProductName": "Raclette Courdavault", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 55, - "UnitsInStock": 79, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - } - ] - }, - { - "CustomerID": "WOLZA", - "CompanyName": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "Region": null, - "PostalCode": "01-012", - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Demographics": { - "CustomerTypeID": "", - "CustomerDesc": null - }, - "Orders": [ - { - "OrderID": 10374, - "CustomerID": "WOLZA", - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00Z", - "RequiredDate": "1997-01-02T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10374, - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 31, - "ProductName": "Gorgonzola Telino", - "SupplierID": 14, - "CategoryID": 4, - "QuantityPerUnit": "12 - 100 g pkgs", - "UnitPrice": 12.5, - "UnitsInStock": 0, - "UnitsOnOrder": 70, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 14, - "CompanyName": "Formaggi Fortini s.r.l.", - "ContactName": "Elio Rossi", - "ContactTitle": "Sales Representative", - "Address": "Viale Dante, 75", - "City": "Ravenna", - "Region": null, - "PostalCode": "48100", - "Country": "Italy", - "Phone": "(0544) 60323", - "Fax": "(0544) 60603", - "Homepage": "#FORMAGGI.HTM#" - } - } - ] - } - }, - { - "OrderID": 10374, - "CustomerID": "WOLZA", - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00Z", - "RequiredDate": "1997-01-02T00:00:00Z", - "ShippedDate": "1996-12-09T00:00:00Z", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10374, - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 58, - "ProductName": "Escargots de Bourgogne", - "SupplierID": 27, - "CategoryID": 8, - "QuantityPerUnit": "24 pieces", - "UnitPrice": 13.25, - "UnitsInStock": 62, - "UnitsOnOrder": 0, - "ReorderLevel": 20, - "Discontinued": 0, - "Category": { - "CategoryID": 8, - "CategoryName": "Seafood", - "Description": "Seaweed and fish", - "Picture": "" - }, - "Supplier": { - "SupplierID": 27, - "CompanyName": "Escargots Nouveaux", - "ContactName": "Marie Delamare", - "ContactTitle": "Sales Manager", - "Address": "22, rue H. Voiron", - "City": "Montceau", - "Region": null, - "PostalCode": "71300", - "Country": "France", - "Phone": "85.57.00.07", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10611, - "CustomerID": "WOLZA", - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00Z", - "RequiredDate": "1997-08-22T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10611, - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0, - "Products": [ - { - "ProductID": 1, - "ProductName": "Chai", - "SupplierID": 8, - "CategoryID": 1, - "QuantityPerUnit": "10 boxes x 30 bags", - "UnitPrice": 18, - "UnitsInStock": 39, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10611, - "CustomerID": "WOLZA", - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00Z", - "RequiredDate": "1997-08-22T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10611, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10611, - "CustomerID": "WOLZA", - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00Z", - "RequiredDate": "1997-08-22T00:00:00Z", - "ShippedDate": "1997-08-01T00:00:00Z", - "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10611, - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 60, - "ProductName": "Camembert Pierrot", - "SupplierID": 28, - "CategoryID": 4, - "QuantityPerUnit": "15 - 300 g rounds", - "UnitPrice": 34, - "UnitsInStock": 19, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 4, - "CategoryName": "Dairy Products", - "Description": "Cheeses", - "Picture": "" - }, - "Supplier": { - "SupplierID": 28, - "CompanyName": "Gai pâturage", - "ContactName": "Eliane Noz", - "ContactTitle": "Sales Representative", - "Address": "Bat. B 3, rue des Alpes", - "City": "Annecy", - "Region": null, - "PostalCode": "74000", - "Country": "France", - "Phone": "38.76.98.06", - "Fax": "38.76.98.58", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10792, - "CustomerID": "WOLZA", - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10792, - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0, - "Products": [ - { - "ProductID": 2, - "ProductName": "Chang", - "SupplierID": 1, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 19, - "UnitsInStock": 17, - "UnitsOnOrder": 40, - "ReorderLevel": 25, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 1, - "CompanyName": "Exotic Liquids", - "ContactName": "Charlotte Cooper", - "ContactTitle": "Purchasing Manager", - "Address": "49 Gilbert St.", - "City": "London", - "Region": null, - "PostalCode": "EC1 4SD", - "Country": "UK", - "Phone": "(171) 555-2222", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10792, - "CustomerID": "WOLZA", - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10792, - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 54, - "ProductName": "Tourtière", - "SupplierID": 25, - "CategoryID": 6, - "QuantityPerUnit": "16 pies", - "UnitPrice": 7.45, - "UnitsInStock": 21, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 6, - "CategoryName": "Meat/Poultry", - "Description": "Prepared meats", - "Picture": "" - }, - "Supplier": { - "SupplierID": 25, - "CompanyName": "Ma Maison", - "ContactName": "Jean-Guy Lauzon", - "ContactTitle": "Marketing Manager", - "Address": "2960 Rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": "H1J 1C3", - "Country": "Canada", - "Phone": "(514) 555-9022", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10792, - "CustomerID": "WOLZA", - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00Z", - "RequiredDate": "1998-01-20T00:00:00Z", - "ShippedDate": "1997-12-31T00:00:00Z", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10792, - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 68, - "ProductName": "Scottish Longbreads", - "SupplierID": 8, - "CategoryID": 3, - "QuantityPerUnit": "10 boxes x 8 pieces", - "UnitPrice": 12.5, - "UnitsInStock": 6, - "UnitsOnOrder": 10, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 8, - "CompanyName": "Specialty Biscuits, Ltd.", - "ContactName": "Peter Wilson", - "ContactTitle": "Sales Representative", - "Address": "29 King's Way", - "City": "Manchester", - "Region": null, - "PostalCode": "M14 GSD", - "Country": "UK", - "Phone": "(161) 555-4448", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10870, - "CustomerID": "WOLZA", - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-13T00:00:00Z", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10870, - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0, - "Products": [ - { - "ProductID": 35, - "ProductName": "Steeleye Stout", - "SupplierID": 16, - "CategoryID": 1, - "QuantityPerUnit": "24 - 12 oz bottles", - "UnitPrice": 18, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 15, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 16, - "CompanyName": "Bigfoot Breweries", - "ContactName": "Cheryl Saylor", - "ContactTitle": "Regional Account Rep.", - "Address": "3400 - 8th Avenue Suite 210", - "City": "Bend", - "Region": "OR", - "PostalCode": "97101", - "Country": "USA", - "Phone": "(503) 555-9931", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10870, - "CustomerID": "WOLZA", - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00Z", - "RequiredDate": "1998-03-04T00:00:00Z", - "ShippedDate": "1998-02-13T00:00:00Z", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10870, - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, - "Discount": 0, - "Products": [ - { - "ProductID": 51, - "ProductName": "Manjimup Dried Apples", - "SupplierID": 24, - "CategoryID": 7, - "QuantityPerUnit": "50 - 300 g pkgs.", - "UnitPrice": 53, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 10, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 24, - "CompanyName": "G'day, Mate", - "ContactName": "Wendy Mackenzie", - "ContactTitle": "Sales Representative", - "Address": "170 Prince Edward Parade Hunter's Hill", - "City": "Sydney", - "Region": "NSW", - "PostalCode": "2042", - "Country": "Australia", - "Phone": "(02) 555-5914", - "Fax": "(02) 555-4873", - "Homepage": "G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#" - } - } - ] - } - }, - { - "OrderID": 10906, - "CustomerID": "WOLZA", - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00Z", - "RequiredDate": "1998-03-11T00:00:00Z", - "ShippedDate": "1998-03-03T00:00:00Z", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 3, - "CompanyName": "Federal Shipping", - "Phone": "(503) 555-9931" - }, - "Details": { - "OrderID": 10906, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10998, - "CustomerID": "WOLZA", - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-04-17T00:00:00Z", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10998, - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 24, - "ProductName": "Guaraná Fantástica", - "SupplierID": 10, - "CategoryID": 1, - "QuantityPerUnit": "12 - 355 ml cans", - "UnitPrice": 4.5, - "UnitsInStock": 20, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 1, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 10, - "CompanyName": "Refrescos Americanas LTDA", - "ContactName": "Carlos Diaz", - "ContactTitle": "Marketing Manager", - "Address": "Av. das Americanas 12.890", - "City": "Sao Paulo", - "Region": null, - "PostalCode": "5442", - "Country": "Brazil", - "Phone": "(11) 555 4640", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10998, - "CustomerID": "WOLZA", - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-04-17T00:00:00Z", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10998, - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, - "Discount": 0, - "Products": [ - { - "ProductID": 61, - "ProductName": "Sirop d'érable", - "SupplierID": 29, - "CategoryID": 2, - "QuantityPerUnit": "24 - 500 ml bottles", - "UnitPrice": 28.5, - "UnitsInStock": 113, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 2, - "CategoryName": "Condiments", - "Description": "Sweet and savory sauces, relishes, spreads, and seasonings", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10998, - "CustomerID": "WOLZA", - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-04-17T00:00:00Z", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10998, - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0, - "Products": [ - { - "ProductID": 74, - "ProductName": "Longlife Tofu", - "SupplierID": 4, - "CategoryID": 7, - "QuantityPerUnit": "5 kg pkg.", - "UnitPrice": 10, - "UnitsInStock": 4, - "UnitsOnOrder": 20, - "ReorderLevel": 5, - "Discontinued": 0, - "Category": { - "CategoryID": 7, - "CategoryName": "Produce", - "Description": "Dried fruit and bean curd", - "Picture": "" - }, - "Supplier": { - "SupplierID": 4, - "CompanyName": "Tokyo Traders", - "ContactName": "Yoshi Nagase", - "ContactTitle": "Marketing Manager", - "Address": "9-8 Sekimai Musashino-shi", - "City": "Tokyo", - "Region": null, - "PostalCode": "100", - "Country": "Japan", - "Phone": "(03) 3555-5011", - "Fax": null, - "Homepage": null - } - } - ] - } - }, - { - "OrderID": 10998, - "CustomerID": "WOLZA", - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00Z", - "RequiredDate": "1998-04-17T00:00:00Z", - "ShippedDate": "1998-04-17T00:00:00Z", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 2, - "CompanyName": "United Package", - "Phone": "(503) 555-3199" - }, - "Details": { - "OrderID": 10998, - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0, - "Products": [ - { - "ProductID": 75, - "ProductName": "Rhönbräu Klosterbier", - "SupplierID": 12, - "CategoryID": 1, - "QuantityPerUnit": "24 - 0.5 l bottles", - "UnitPrice": 7.75, - "UnitsInStock": 125, - "UnitsOnOrder": 0, - "ReorderLevel": 25, - "Discontinued": 0, - "Category": { - "CategoryID": 1, - "CategoryName": "Beverages", - "Description": "Soft drinks, coffees, teas, beers, and ales", - "Picture": "" - }, - "Supplier": { - "SupplierID": 12, - "CompanyName": "Plutzer Lebensmittelgroßmärkte AG", - "ContactName": "Martin Bein", - "ContactTitle": "International Marketing Mgr.", - "Address": "Bogenallee 51", - "City": "Frankfurt", - "Region": null, - "PostalCode": "60439", - "Country": "Germany", - "Phone": "(069) 992755", - "Fax": null, - "Homepage": "Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#" - } - } - ] - } - }, - { - "OrderID": 11044, - "CustomerID": "WOLZA", - "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00Z", - "RequiredDate": "1998-05-21T00:00:00Z", - "ShippedDate": "1998-05-01T00:00:00Z", - "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipRegion": null, - "ShipPostalCode": "01-012", - "ShipCountry": "Poland", - "Shipper": { - "ShipperID": 1, - "CompanyName": "Speedy Express", - "Phone": "(503) 555-9831" - }, - "Details": { - "OrderID": 11044, - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0, - "Products": [ - { - "ProductID": 62, - "ProductName": "Tarte au sucre", - "SupplierID": 29, - "CategoryID": 3, - "QuantityPerUnit": "48 pies", - "UnitPrice": 49.3, - "UnitsInStock": 17, - "UnitsOnOrder": 0, - "ReorderLevel": 0, - "Discontinued": 0, - "Category": { - "CategoryID": 3, - "CategoryName": "Confections", - "Description": "Desserts, candies, and sweet breads", - "Picture": "" - }, - "Supplier": { - "SupplierID": 29, - "CompanyName": "Forêts d'érables", - "ContactName": "Chantal Goulet", - "ContactTitle": "Accounting Manager", - "Address": "148 rue Chasseur", - "City": "Ste-Hyacinthe", - "Region": "Québec", - "PostalCode": "J2S 7S8", - "Country": "Canada", - "Phone": "(514) 555-2955", - "Fax": "(514) 555-2921", - "Homepage": null - } - } - ] - } - } - ] - } -] \ No newline at end of file diff --git a/tests/postgres/testdata/quick-start-dest.json b/tests/postgres/testdata/quick-start-dest.json deleted file mode 100644 index 050a6fb..0000000 --- a/tests/postgres/testdata/quick-start-dest.json +++ /dev/null @@ -1,6067 +0,0 @@ -[ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "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" - }, - "Categories": [ - { - "CategoryID": 2, - "Name": "Animation", - "LastUpdate": "2006-02-15T09:46:27Z" - } - ] - } - ] - } -] \ No newline at end of file diff --git a/tests/postgres/testdata/quick-start-dest2.json b/tests/postgres/testdata/quick-start-dest2.json deleted file mode 100644 index 095bd0c..0000000 --- a/tests/postgres/testdata/quick-start-dest2.json +++ /dev/null @@ -1,1769 +0,0 @@ -[ - { - "CategoryID": 8, - "Name": "Family", - "LastUpdate": "2006-02-15T09:46:27Z", - "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" - }, - { - "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" - } - ], - "Actors": [ - { - "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", - "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" - }, - { - "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" - } - ], - "Actors": [ - { - "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", - "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" - }, - { - "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" - } - ], - "Actors": [ - { - "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", - "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" - }, - { - "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" - } - ], - "Actors": [ - { - "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", - "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" - }, - { - "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" - } - ], - "Actors": [ - { - "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", - "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" - } - ], - "Actors": [ - { - "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", - "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" - }, - { - "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" - } - ], - "Actors": [ - { - "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", - "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" - }, - { - "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" - } - ], - "Actors": [ - { - "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", - "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" - }, - { - "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" - } - ], - "Actors": [ - { - "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", - "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" - }, - { - "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" - } - ], - "Actors": [ - { - "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", - "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" - } - ], - "Actors": [ - { - "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", - "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" - }, - { - "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" - } - ], - "Actors": [ - { - "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", - "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" - } - ], - "Actors": [ - { - "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", - "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" - }, - { - "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" - } - ], - "Actors": [ - { - "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 diff --git a/tests/testdata/common/bool_operators.json b/tests/testdata/common/bool_operators.json deleted file mode 100644 index e3f8edf..0000000 --- a/tests/testdata/common/bool_operators.json +++ /dev/null @@ -1,38 +0,0 @@ -[ - { - "Eq1": false, - "Eq2": false, - "NEq1": true, - "NEq2": false, - "Distinct1": true, - "Distinct2": true, - "NotDistinct1": false, - "NotDistinct2": false, - "IsTrue": false, - "IsNotTrue": true, - "IsFalse": true, - "IsNotFalse": false, - "IsUnknown": false, - "IsNotUnknown": true, - "Complex1": true, - "Complex2": true - }, - { - "Eq1": null, - "Eq2": false, - "NEq1": null, - "NEq2": false, - "Distinct1": true, - "Distinct2": true, - "NotDistinct1": false, - "NotDistinct2": false, - "IsTrue": false, - "IsNotTrue": true, - "IsFalse": true, - "IsNotFalse": false, - "IsUnknown": false, - "IsNotUnknown": true, - "Complex1": true, - "Complex2": true - } -] \ No newline at end of file diff --git a/tests/testdata/common/common.go b/tests/testdata/common/common.go deleted file mode 100644 index 60ebf7c..0000000 --- a/tests/testdata/common/common.go +++ /dev/null @@ -1,93 +0,0 @@ -package common - -type ExpressionTestResult struct { - IsNull *bool - IsNotNull *bool - In *bool - InSelect *bool - NotIn *bool - NotInSelect *bool -} - -type EqualityExpResult struct { - Eq1 *bool - Eq2 *bool - Distinct1 *bool - Distinct2 *bool - NotDistinct1 *bool - NotDistinct2 *bool - Lt1 *bool - Lt2 *bool - Lte1 *bool - Lte2 *bool - Gt1 *bool - Gt2 *bool - Gte1 *bool - Gte2 *bool -} - -type AllTypesIntegerExpResult struct { - EqualityExpResult `alias:"."` - - Add1 *int64 - Add2 *int64 - Sub1 *int64 - Sub2 *int64 - Mul1 *int64 - Mul2 *int64 - Div1 *int64 - Div2 *int64 - Mod1 *int64 - Mod2 *int64 - Pow1 *int64 - Pow2 *int64 - BitAnd1 *int64 - BitAnd2 *int64 - BitOr1 *int64 - BitOr2 *int64 - BitXor1 *int64 - BitXor2 *int64 - BitShiftLeft1 *int64 - BitShiftLeft2 *int64 - BitShiftRight1 *int64 - BitShiftRight2 *int64 -} - -type FloatExpressionTestResult struct { - Eq1 *bool - Eq2 *bool - Eq3 *bool - Distinct1 *bool - Distinct2 *bool - Distinct3 *bool - NotDistinct1 *bool - NotDistinct2 *bool - NotDistinct3 *bool - Lt1 *bool - Lt2 *bool - Gt1 *bool - Gt2 *bool - Add1 *float64 - Add2 *float64 - Sub1 *float64 - Sub2 *float64 - Mul1 *float64 - Mul2 *float64 - Div1 *float64 - Div2 *float64 - Mod1 *float64 - Mod2 *float64 - Pow1 *float64 - Pow2 *float64 - - Abs *float64 - Power *float64 - Sqrt *float64 - Cbrt *float64 - Ceil *float64 - Floor *float64 - Round1 *float64 - Round2 *float64 - Sign *float64 - Trunc *float64 -} diff --git a/tests/testdata/common/float_operators.json b/tests/testdata/common/float_operators.json deleted file mode 100644 index cc234ab..0000000 --- a/tests/testdata/common/float_operators.json +++ /dev/null @@ -1,76 +0,0 @@ -[ - { - "Eq1": true, - "Eq2": false, - "Eq3": false, - "Distinct1": false, - "Distinct2": true, - "Distinct3": true, - "NotDistinct1": true, - "NotDistinct2": false, - "NotDistinct3": false, - "Lt1": true, - "Lt2": true, - "Gt1": false, - "Gt2": false, - "Add1": 2.22, - "Add2": 12.33, - "Sub1": 0, - "Sub2": -10.11, - "Mul1": 1.23, - "Mul2": 12.45, - "Div1": 1, - "Div2": 0.09, - "Mod1": 0, - "Mod2": 1.11, - "Pow1": 1.12, - "Pow2": 1.24, - "Abs": 1.11, - "Power": 1.24, - "Sqrt": 1.05, - "Cbrt": 1.03, - "Ceil": 6, - "Floor": 5, - "Round1": 1, - "Round2": 1.11, - "Sign": 1, - "Trunc": 1.1 - }, - { - "Eq1": true, - "Eq2": false, - "Eq3": false, - "Distinct1": false, - "Distinct2": true, - "Distinct3": true, - "NotDistinct1": true, - "NotDistinct2": false, - "NotDistinct3": false, - "Lt1": true, - "Lt2": true, - "Gt1": false, - "Gt2": false, - "Add1": 2.22, - "Add2": 12.33, - "Sub1": null, - "Sub2": -10.11, - "Mul1": null, - "Mul2": 12.45, - "Div1": null, - "Div2": 0.09, - "Mod1": null, - "Mod2": 1.11, - "Pow1": null, - "Pow2": 1.24, - "Abs": 1.11, - "Power": 1.24, - "Sqrt": 1.05, - "Cbrt": 1.03, - "Ceil": 6, - "Floor": 5, - "Round1": 1, - "Round2": 1.11, - "Sign": 1, - "Trunc": 1.1 - } -] \ No newline at end of file diff --git a/tests/testdata/common/int_operators.json b/tests/testdata/common/int_operators.json deleted file mode 100644 index 249efff..0000000 --- a/tests/testdata/common/int_operators.json +++ /dev/null @@ -1,78 +0,0 @@ -[ - { - "Eq1": true, - "Eq2": false, - "Distinct1": false, - "Distinct2": true, - "NotDistinct1": true, - "NotDistinct2": false, - "Lt1": true, - "Lt2": false, - "Lte1": true, - "Lte2": false, - "Gt1": false, - "Gt2": true, - "Gte1": false, - "Gte2": true, - "Add1": 10000, - "Add2": 5011, - "Sub1": 0, - "Sub2": 4989, - "Mul1": 25000000, - "Mul2": 55000, - "Div1": 1, - "Div2": 454, - "Mod1": 0, - "Mod2": 6, - "Pow1": 38416, - "Pow2": 7529536, - "BitAnd1": 14, - "BitAnd2": 14, - "BitOr1": 14, - "BitOr2": 30, - "BitXor1": 0, - "BitXor2": 5, - "BitShiftLeft1": 1792, - "BitShiftLeft2": 224, - "BitShiftRight1": 3, - "BitShiftRight2": 7 - }, - { - "Eq1": true, - "Eq2": false, - "Distinct1": false, - "Distinct2": true, - "NotDistinct1": true, - "NotDistinct2": false, - "Lt1": null, - "Lt2": false, - "Lte1": null, - "Lte2": false, - "Gt1": null, - "Gt2": true, - "Gte1": null, - "Gte2": true, - "Add1": 10000, - "Add2": 5011, - "Sub1": 0, - "Sub2": 4989, - "Mul1": 25000000, - "Mul2": 55000, - "Div1": 1, - "Div2": 454, - "Mod1": 0, - "Mod2": 6, - "Pow1": 38416, - "Pow2": 7529536, - "BitAnd1": 14, - "BitAnd2": 14, - "BitOr1": 14, - "BitOr2": 30, - "BitXor1": 0, - "BitXor2": 5, - "BitShiftLeft1": 1792, - "BitShiftLeft2": 224, - "BitShiftRight1": 3, - "BitShiftRight2": 7 - } -] \ No newline at end of file